我的Java代码没有输出

时间:2012-10-17 12:05:30

标签: java java-ee javax.comm

我想找到Windows 7中的端口,我已经为它编写了代码。它成功编译但没有输出。我已经编译了Netbeans

这是我的代码:

import java.util.*;  
import javax.comm.*;

public class PortLister {  
    public static void main(String[] args) {  
        Enumeration e = CommPortIdentifier.getPortIdentifiers();  
        while (e.hasMoreElements()) {  
            System.out.println((CommPortIdentifier) e.nextElement());  
        } 
    }  
}  

0 个答案:

没有答案