How to get list of available serial ports in my pc using Java?

こ雲淡風輕ζ 提交于 2019-11-30 04:36:31

问题


I just run some codes to get a list of available ports n my cmputer and it returned me false when I have 3 com ports that are free. How do I solve this prob?

My codes:

public static void main(String[] args) {
        //SerialParameters params=new SerialParameters();
       // System.out.println(CommPortIdentifier.PORT_SERIAL );
        Enumeration portList = CommPortIdentifier.getPortIdentifiers();
        System.out.println(portList.hasMoreElements());
        while(portList.hasMoreElements()){
            System.out.println("Has more elements");
             CommPortIdentifier portId = (CommPortIdentifier) portList.nextElement();
               if (portId.getPortType() == CommPortIdentifier.PORT_PARALLEL) {
                    System.out.println(portId.getName());
               }
               else{
                     System.out.println(portId.getName());
               }

        }
}

Output : false


回答1:


It appears your setup of the javax.comm API may not be correct. Make sure you have done the following:

  1. Placed the comm.jar file in the jre/lib/ext directory.
  2. Placed the javax.comm.properties file in the jre/lib directory.
  3. Placed the win32com.dll in the jre/bin directory.

Each of the above components "should" be available here.




回答2:


I'm using ubuntu and my computer does not have any serial/pararel port.

You need to simulate this ports in this case.

My answer:

serial port identification with java on ubuntu



来源:https://stackoverflow.com/questions/4493279/how-to-get-list-of-available-serial-ports-in-my-pc-using-java

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!