原文链接:https://www.iteye.com/blog/hwei199-2251685
Java comm串口通信Utils类
javax.comm包提供了java原生的串口通信API,实际中用到的场景很多,例如很多设备的控制信号都是通过串口进行控制的,只要向指定串口发送指定消息,就可以控制设备或读取设备信息,例如读取温度传感器信息、控制自动贩卖机出货等等。
使用javax.comm进行串口通信大概分为以下几个步骤:
1、选择一个可利用串口如COM1,得到一个CommPortIdentifier类。
2、设置初始化参数(波特率、数据位、停止位、校验位),利用CommPortIdentifier.open()方法得到一个SerialPort。
3、利用SerialPort.getOutputStream得到串口输出流,向串口写入数据。
4、利用SerialPort.addEventListener(SerialPortEventListener listener)为串口添加监听事件,当串口返回数据时,在SerialPortEventListener监听器的public void serialEvent(SerialPortEvent arg0)方法中,通过SerialPort.getInputStream得到串口输入流来读取响应数据。
这里提供一个串口通信Utils类。由于串口的通信机制,
SerialPortEventListener监听器每接收到8个字节时会调用一次serialEvent,因此在数据未读取完毕时需要追加读入字节数组,这样才能取到完整的返回字节数组。
源码如下,代码中的Log记录类和自定义Exception类请自行替换后通过编译。
Util类 SerialPortCommUtil:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507
| package com.ktvm.common.serial; import java.io.BufferedInputStream; import java.io.BufferedOutputStream; import java.io.IOException; import java.io.InputStream; import java.io.OutputStream; import java.util.Enumeration; import java.util.Timer; import java.util.TimerTask; import javax.comm.CommPortIdentifier; import javax.comm.SerialPort; import javax.comm.SerialPortEvent; import javax.comm.SerialPortEventListener; import com.ktvm.common.exception.KtVendExceptoin; import com.ktvm.common.util.LogUtil; import com.ktvm.common.util.SysConstant;
public class SerialPortCommUtil implements SerialPortEventListener{ private SerialPort serialPort; private InputStream inputStream; private OutputStream outputStream; private CommPortIdentifier commPort; private int timeout = 2000; private int responseTime; private String portName; private int baudRate; private int dataBits=8; private int stopBit=1; private int verifyBit=0; private int totalDataLen = 0; private int readlength = 0; private boolean initTest = false; private int callbackTimes; byte[] readBuffer = null; private boolean enableLog = false; private boolean isWatting = false; private boolean isTimeout = false; private static final String VERIFYSTRING = "FE 04 06"; private Timer timer; private SerialPortWatcher watcher; public SerialPortCommUtil(String portName, int baudRate, int dataBits, int stopBit, int verifyBit) { this.portName = portName.toUpperCase(); this.baudRate = baudRate; this.dataBits = dataBits; this.stopBit = stopBit; this.verifyBit = verifyBit; this.enableLog = Boolean.valueOf(PropUtil.getInstance().getProperty("enableLog")); }
public void initSerial() { LogUtil.info(LogUtil.INFO_SERIAL + "SerialCommunication.initSerial 串口通信初始化!"); responseTime = SysConstant.SERIAL_RESPONSE_TIME * 1000; try { if(!initTest) listPort(); selectPort(portName); resetCallbackTimes(); readBuffer = null; initTest = true; } catch (KtVendExceptoin e) { LogUtil.error(e, e.getMessage()); e.getMessage(); } }
@SuppressWarnings("rawtypes") public void listPort() { if(enableLog){ LogUtil.info(LogUtil.INFO_SERIAL + "SerialCommunication.listPort 列出所有可用的串口 "); CommPortIdentifier cpid; Enumeration en = CommPortIdentifier.getPortIdentifiers(); while (en.hasMoreElements()) { cpid = (CommPortIdentifier) en.nextElement(); if (cpid.getPortType() == CommPortIdentifier.PORT_SERIAL) { LogUtil.debug(cpid.getName() + ", " + cpid.getCurrentOwner()); } } } }
@SuppressWarnings("rawtypes") public void selectPort(String portName) { LogUtil.info(LogUtil.INFO_SERIAL + "选择端口: " + portName); this.commPort = null; CommPortIdentifier cpid; Enumeration en = CommPortIdentifier.getPortIdentifiers(); while (en.hasMoreElements()) { cpid = (CommPortIdentifier) en.nextElement(); if (cpid.getPortType() == CommPortIdentifier.PORT_SERIAL && cpid.getName().equals(portName)) { this.commPort = cpid; break; } } openPort(portName); }
private void openPort(String portName) { if (commPort == null) throw new KtVendExceptoin(String.format("无法找到名字为'%1$s'的串口!", portName)); else { if(enableLog) LogUtil.debug("打开端口:" + commPort.getName() + ",现在实例化 SerialPort:"); try { serialPort = (SerialPort) commPort.open("TemperatureMonitor", timeout); serialPort.setSerialPortParams(baudRate, SysConstant.SERIAL_DATA_BITS, SysConstant.SERIAL_STOP_BITS, SysConstant.SERIAL_PARITY); serialPort.addEventListener(this); if(enableLog) LogUtil.debug("实例 SerialPort 成功!"); } catch (Exception e) { LogUtil.error(e); throw new KtVendExceptoin(String.format("端口'%1$s'正在使用中!", commPort.getName()), e); } } }
@Override public void serialEvent(SerialPortEvent arg0) { if(totalDataLen == 0) throw new KtVendExceptoin("返回数据长度未初始化..."); switch (arg0.getEventType()) { case SerialPortEvent.BI: break; case SerialPortEvent.OE: break; case SerialPortEvent.FE: errLog(portName + " Framing error,传帧错误"); break; case SerialPortEvent.PE: break; case SerialPortEvent.CD: break; case SerialPortEvent.CTS: log(portName + " ====CTS===="); break; case SerialPortEvent.DSR: break; case SerialPortEvent.RI: break; case SerialPortEvent.OUTPUT_BUFFER_EMPTY: log(portName + " ====OUTPUT_BUFFER_EMPTY===="); break; case SerialPortEvent.DATA_AVAILABLE: LogUtil.info("callback=" + callbackTimes + " readlength=" + readlength); if(readlength % totalDataLen == 0){ if(readBuffer == null) readBuffer = new byte[totalDataLen]; readlength = 0; } callbackTimes++; try { if (inputStream!=null && inputStream.available() > 0) { readlength += inputStream.read(readBuffer, readlength, totalDataLen-readlength); if(enableLog){ LogUtil.info("callback:" + callbackTimes + "--readed:" + readlength); LogUtil.info("串口返回数据[len:" +readlength +"]" + AppUtil.showByteData(readBuffer, readlength)); } if(initTest) { if(readlength == totalDataLen){ boolean verifyRst = verifyRtnData(readBuffer);
if(watcher != null){ WatchEvent event = new WatchEvent(); if(verifyRst) event.setData(readBuffer); else event.setData(correctData(readBuffer)); watcher.doWatch(event); } resetCallbackTimes(); timer.cancel(); log("set watting = false"); setWatting(false); serialPort.notifyOnDataAvailable(false); if(inputStream!=null){ log("close inputStream..."); try { inputStream.close(); inputStream = null; } catch (IOException e) { e.printStackTrace(); } } if(!verifyRst){ reInitSerial(); } } } } } catch (Exception e) { e.printStackTrace(); LogUtil.error(new KtVendExceptoin("串口通信失败!", e)); } } }
public void write(byte[] message) { setWatting(true); if(enableLog) LogUtil.info(LogUtil.INFO_SERIAL + portName + "发送数据Preapre:" + AppUtil.showByteData(message, 8)); checkPort(); serialTimeOut(); try { outputStream = new BufferedOutputStream(serialPort.getOutputStream()); } catch (IOException e) { throw new KtVendExceptoin("获取端口的OutputStream出错:" + e.getMessage(), e); } try { outputStream.write(message); if(enableLog) LogUtil.info(LogUtil.INFO_SERIAL + portName + "发送数据成功"); if(inputStream == null){ inputStream = new BufferedInputStream(serialPort.getInputStream()); } serialPort.notifyOnDataAvailable(true);
} catch (IOException e) { throw new KtVendExceptoin(portName + "向端口发送信息时出错:" + e.getMessage(), e); } finally { try { outputStream.close(); } catch (Exception e) { } } }
public void close() { final Timer closeTimer = new Timer(); TimerTask task=new TimerTask() { @Override public void run() { closeNow(); SysConstant.tempWatchTimer.cancel(); closeTimer.cancel(); } }; closeTimer.schedule(task, 1000); } public void closeNow(){ if(serialPort != null) serialPort.close(); serialPort = null; commPort = null; if(inputStream!=null){ try { inputStream.close(); inputStream = null; } catch (IOException e) { e.printStackTrace(); } } LogUtil.info(LogUtil.INFO_SERIAL + portName + "已关闭!"); }
private void serialTimeOut(){ if(timer!=null){ timer.cancel(); timer = null; } timer = new Timer(); TimerTask timerTask=new TimerTask() { @Override public void run() { LogUtil.error(LogUtil.ERR + portName + "---串口通信" + responseTime + "秒内未返回完整数据!"); LogUtil.info(LogUtil.INFO_SERIAL + "---重新启动端口---" + SysConstant.spc.getPortName() + " Start..."); reInitSerial(); LogUtil.info(LogUtil.INFO_SERIAL + "---重新启动端口---" + SysConstant.spc.getPortName() + " Success..."); setTimeout(true); } }; timer.schedule(timerTask, responseTime); } private void reInitSerial(){ log("重新初始化串口" + portName + "..."); closeNow(); initSerial(); setWatting(false); } private boolean verifyRtnData(byte[] readBuffer) { if(AppUtil.getHexByteString(readBuffer, 0, 3).equals(VERIFYSTRING)) return true; LogUtil.error(LogUtil.INFO_SERIAL + portName+"数据校验失败..."); return false; }
private byte[] correctData(byte[] buffer) { LogUtil.error(LogUtil.INFO_SERIAL + portName+"重构缓冲区数组..."); int indexOf = AppUtil.indexOfHexByteArray(buffer, "FE 04 06"); byte[] newData = new byte[totalDataLen]; for(int i=indexOf,j=0; i < totalDataLen; i++,j++){ newData[j] = buffer[i]; } readlength = readlength - indexOf; return newData; }
private void checkPort() { if (commPort == null) { throw new KtVendExceptoin("没有找到端口!"); } if (serialPort == null) { throw new KtVendExceptoin("SerialPort 对象无效!"); } } private void resetCallbackTimes(){ log("[IN]resetCallbackTimes."); this.callbackTimes = 0; this.readlength = 0; readBuffer = null; } public String getPortName() { return portName; } public void setPortName(String portName) { this.portName = portName.toUpperCase(); } public int getBaudRate() { return baudRate; } public void setBaudRate(int baudRate) { this.baudRate = baudRate; } public int getDataBits() { return dataBits; } public void setDataBits(int dataBits) { this.dataBits = dataBits; } public int getStopBit() { return stopBit; } public void setStopBit(int stopBit) { this.stopBit = stopBit; } public int getVerifyBit() { return verifyBit; } public void setVerifyBit(int verifyBit) { this.verifyBit = verifyBit; } public int getRtnDataLen() { return totalDataLen; } public void setRtnDataLen(int rtnDataLen) { this.totalDataLen = rtnDataLen; this.readlength = 0; } public void setWatcher(SerialPortWatcher watcher) { this.watcher = watcher; } public boolean isWatting() { return isWatting; } public void setWatting(boolean isWatting) { this.isWatting = isWatting; } public boolean isTimeout() { return isTimeout; } public void setTimeout(boolean isTimeout) { this.isTimeout = isTimeout; } public int getResponseTime() { return responseTime; } private void log(String str){ if(enableLog){ LogUtil.info(LogUtil.INFO_SERIAL + portName + ":" + str); } } private void errLog(String str){ if(enableLog){ LogUtil.error(LogUtil.INFO_SERIAL + portName + ":" + str); } } } private String showByteData(byte[] b, int length) { String str = ""; for (int i=0; i<b.length && i < length; i++) { str += String.format("%02X", b[i]) + " "; } return str; }
|
添加一个串口监视器接口,当串口有数据返回时,利用doWatch(WatchEvent we)方法做实际业务想做的事情:
1 2 3 4 5 6 7
|
public interface SerialPortWatcher { public void doWatch(WatchEvent event); }
|
串口监视器具体类:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
| @Component public class TemperatureWatcher implements SerialPortWatcher { @Resource private WebServiceManager webServiceManager;
@Override public void doWatch(WatchEvent event) { byte[] data = event.getData(); System.out.println("DoWatch:::::" + showByteData(data, data.length)); ServiceResponse serviceResponse = webServiceManager.upTemperatureInfo( SysConstant.UP_TEMPINFO, JsonUtil.listToJson(data)); } private static String showByteData(byte[] b, int length) { String str = ""; if(b!=null){ for (int i=0; i<b.length && i < length; i++) { str += String.format("%02X", b[i]) + " "; } } return str; } }
|
测试类:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
| package com.ktvm.common.serial; public class TestComm { public static void main(String[] args) { testSerial(); } private static void testSerial() { final SerialPortCommUtil sp = new SerialPortCommUtil("com1", 9600, 8 , 1, 0); sp.setRtnDataLen(11); sp.initSerial(); sp.write(new byte[]{(byte)0xFE, 0x04, 0x00 ,0x00 ,0x00 ,0x03, (byte)0xA4, 0x04}); sp.close();
|
运行结果如下:
2015-10-24 17:34:45:789 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] SerialCommunication.initSerial 串口通信初始化!
2015-10-24 17:34:45:791 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] SerialCommunication.listPort 列出所有可用的串口
2015-10-24 17:34:45:798 DEBUG [LogUtil.java:40] - COM1, Port currently not owned
2015-10-24 17:34:45:799 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] 选择端口: COM1
2015-10-24 17:34:45:800 DEBUG [LogUtil.java:40] - 端口选择成功,当前端口:COM1,现在实例化 SerialPort:
2015-10-24 17:34:45:803 DEBUG [LogUtil.java:40] - 实例 SerialPort 成功!
2015-10-24 17:34:45:806 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] COM1发送数据Preapre:FE 04 00 00 00 03 A4 04
2015-10-24 17:34:45:807 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] COM1已发送数据:FE 04 00 00 00 03 A4 04
callback:0–readed:8
2015-10-24 17:34:45:833 DEBUG [LogUtil.java:40] - 串口返回数据[len:8]FE 04 06 0A DF 0A E2 0A
2015-10-24 17:34:45:833 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] 返回数据校验成功!
callback:1–readed:11
2015-10-24 17:34:45:841 DEBUG [LogUtil.java:40] - 串口返回数据[len:11]FE 04 06 0A DF 0A E2 0A EC 14 DD
2015-10-24 17:34:45:841 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] 返回数据校验成功!
2015-10-24 17:34:47:808 INFO [LogUtil.java:36] - [DEBUGINFO][SERIAL] COM1已关闭!