问题描述
- 关于java通信接口的问题,
-
package com.test.www;import java.util.Enumeration;
public class Hello {
public static void main(String[] args) {
Enumeration<?> en = CommPortIdentifier.getPortIdentifiers();CommPortIdentifier portId;
while (en.hasMoreElements()) {
portId = (CommPortIdentifier) en.nextElement();
// 如果端口类型是串口,则打印出其端口信息
if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) {
System.out.println(portId.getName());
}
}
}
}
我的comm.jar包已经导入到jre里面去了,为什么还是提示CommPortIdentifier cannot be resolved,求大牛来解决额。。。。。。
解决方案
在类里面加上import javax.comm.CommPortIdentifier;看看
解决方案二:
上面的答案有帮助吗?如果还有问题,请提出来,如果对答案满意,请顶一下,并标记为采纳答案,谢谢!
时间: 2024-09-13 14:53:05