我想找到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());
}
}
}