我用java读万博网页版登陆页派的串口信息,之前已经将Rxtxcomm.jar复制在jre/lib/ext,librxtxSerial.so复制复制/usr/lib中,并且将/etc/cmdline.txt和 vi /etc/inittab做了修改和注销。java代码Enumeration<CommPortIdentifier> ports =CommPortIdentifier.getPortIdentifiers();System.out.println("Debug:"+ports.hasMoreElements());while(ports.hasMoreElements())
System.out.println("Debug:"+ports.nextElement().getName());
结果:Debug:false。但是没有找到串口名,我在我的电脑可以打出com1和com3。
求指教