取得com端口的id-->端口的引用,一定要在得到SerialPort以后添加事件的触发条件.
例如:
port.notifyOnDataAvailable(true);
port.notifyOnBreakInterrupt(true);
port.notifyOnCarrierDetect(true);
port.notifyOnCTS(true);
port.notifyOnDataAvailable(true);
port.notifyOnDSR(true);
port.notifyOnFramingError(true);
port.notifyOnOutputEmpty(true);
port.notifyOnOverrunError(true);
port.notifyOnParityError(true);
port.notifyOnRingIndicator(true);