當前位置: 首頁>>代碼示例>>Java>>正文


Java UnsupportedCommOperationException.getMessage方法代碼示例

本文整理匯總了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());
   }
 }
 
開發者ID:FracturedPlane,項目名稱:GpsdInspector,代碼行數:21,代碼來源:GPSSerialDevice.java

示例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);
		}
	}
}
 
開發者ID:digidotcom,項目名稱:XBeeJavaLibrary,代碼行數:15,代碼來源:SerialPortRxTx.java


注:本文中的gnu.io.UnsupportedCommOperationException.getMessage方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。