J
james.tane
Unregistered / Unconfirmed
GUEST, unregistred user!
CommPortIdentifier portId;
String portname;
SerialPort sport;
portname="COM1";
try{
portId = CommPortIdentifier.getPortIdentifier(portname);
}catch(NoSuchPortException pe){
System.out.println("portId error: "+pe.toString());
}
出现例外:NoSuchPortException
String portname;
SerialPort sport;
portname="COM1";
try{
portId = CommPortIdentifier.getPortIdentifier(portname);
}catch(NoSuchPortException pe){
System.out.println("portId error: "+pe.toString());
}
出现例外:NoSuchPortException