我有一台没有COMM端口的笔记本电脑, 而且我需要升级使用RS-232读取磅秤设备的软件。
我正在使用VSPE模拟COMM PORT,但这行返回给我null;
Enumeration ports = CommPortIdentifier.getPortIdentifiers();
System.out.println("start Port List scanner");
while(ports.hasMoreElements())
我猜这是因为Eclipse无法找到Windows dll。 win32com.dll 要么 rxtxSerial.dll
我必须复制到Java Lib和Windows / System32文件夹吗? 有什么方法可以告诉eclipse在哪里找到这些dll吗?
最好的问候
答案 0 :(得分:0)
您可以简单地将comm-2.0.jar添加到您的项目中。 download
或者,如果您正在处理Maven项目,则可以将其作为依赖项添加到pom.xml:
<dependency>
<groupId>javax.comm</groupId>
<artifactId>comm</artifactId>
<version>2.0.3</version>
<scope>system</scope>
</dependency>