本文整理匯總了Java中gnu.io.UnsupportedCommOperationException.getMessage方法的典型用法代碼示例。如果您正苦於以下問題:Java UnsupportedCommOperationException.getMessage方法的具體用法?Java UnsupportedCommOperationException.getMessage怎麽用?Java UnsupportedCommOperationException.getMessage使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類gnu.io.UnsupportedCommOperationException
的用法示例。
在下文中一共展示了UnsupportedCommOperationException.getMessage方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: setSerialPortSpeed
import gnu.io.UnsupportedCommOperationException; //導入方法依賴的package包/類
/**
* Sets the speed for the serial port.
* @param speed the speed to set (e.g. 4800, 9600, 19200, 38400, ...)
*/
public void setSerialPortSpeed(int speed)
throws IOException
{
try
{
serial_port_.setSerialPortParams(speed,
SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,
SerialPort.PARITY_NONE);
}
catch(UnsupportedCommOperationException e)
{
e.printStackTrace();
throw new IOException(e.getMessage());
}
}
示例2: setPortParameters
import gnu.io.UnsupportedCommOperationException; //導入方法依賴的package包/類
@Override
public void setPortParameters(int baudRate, int dataBits, int stopBits,
int parity, int flowControl) throws InvalidConfigurationException, ConnectionException {
parameters = new SerialPortParameters(baudRate, dataBits, stopBits, parity, flowControl);
if (serialPort != null) {
try {
serialPort.setSerialPortParams(baudRate, dataBits, stopBits, parity);
serialPort.setFlowControlMode(flowControl);
} catch (UnsupportedCommOperationException e) {
throw new InvalidConfigurationException(e.getMessage(), e);
}
}
}