從串口讀數(shù)據(jù)
從串口COM11發(fā)送的數(shù)據(jù)最終將到達(dá)與其連通的串口COM21,如果COM21處于可用狀態(tài),則到達(dá)的數(shù)據(jù)將被緩存,等待程序的讀取。從串口讀入數(shù)據(jù)有多種模式,本文將介紹“輪詢模式”和事件監(jiān)聽模式。
“輪詢模式”是指程序(線程)每隔固定的時(shí)間就對串口進(jìn)行一次掃描,如果掃描發(fā)現(xiàn)串口中有可用數(shù)據(jù),則進(jìn)行讀取。Com21PollingListener類使用“事件監(jiān)聽模式”讀取串口COM21接收到的數(shù)據(jù):
Com21PollingListener.java
package com.serialPort.listener;
import java.io.IOException;
import java.io.InputStream;
import javax.comm.CommPortIdentifier;
import javax.comm.NoSuchPortException;
import javax.comm.PortInUseException;
import javax.comm.SerialPort;
/**
* Com21PollingListener類使用“輪訓(xùn)”的方法監(jiān)聽串口COM21,
* 并通過COM21的輸入流對象來獲取該端口接收到的數(shù)據(jù)(在本文中數(shù)據(jù)來自串口COM11)。
*/
public class Com21PollingListener {
public static void main(String[] args){
//1.定義變量
CommPortIdentifier com21 = null;//未打卡的端口
SerialPort serialCom21 = null;//打開的端口
InputStream inputStream = null;//端口輸入流
try{
//2.獲取并打開串口COM21
com21 = CommPortIdentifier.getPortIdentifier(“COM21”);
serialCom21 = (SerialPort) com21.open(“Com21Listener”, 1000);
//3.獲取串口的輸入流對象
inputStream = serialCom21.getInputStream();
//4.從串口讀入數(shù)據(jù)
//定義用于緩存讀入數(shù)據(jù)的數(shù)組
byte[] cache = new byte[1024];
//記錄已經(jīng)到達(dá)串口COM21且未被讀取的數(shù)據(jù)的字節(jié)(Byte)數(shù)。
int availableBytes = 0;
//無限循環(huán),每隔20毫秒對串口COM21進(jìn)行一次掃描,檢查是否有數(shù)據(jù)到達(dá)
while(true){
//獲取串口COM21收到的可用字節(jié)數(shù)
availableBytes = inputStream.available();
//如果可用字節(jié)數(shù)大于零則開始循環(huán)并獲取數(shù)據(jù)
while(availableBytes 》 0){
//從串口的輸入流對象中讀入數(shù)據(jù)并將數(shù)據(jù)存放到緩存數(shù)組中
inputStream.read(cache);
//將獲取到的數(shù)據(jù)進(jìn)行轉(zhuǎn)碼并輸出
for(int j = 0;j 《 cache.length && j 《 availableBytes; j++){
//因?yàn)镃OM11口發(fā)送的是使用byte數(shù)組表示的字符串,
//所以在此將接收到的每個(gè)字節(jié)的數(shù)據(jù)都強(qiáng)制裝換為char對象即可,
//這是一個(gè)簡單的編碼轉(zhuǎn)換,讀者可以根據(jù)需要進(jìn)行更加復(fù)雜的編碼轉(zhuǎn)換。
System.out.print((char)cache[j]);
}
System.out.println();
//更新循環(huán)條件
availableBytes = inputStream.available();
}
//讓線程睡眠20毫秒
Thread.sleep(20);
}
}catch(InterruptedException e){
e.printStackTrace();
}catch (NoSuchPortException e) {
//找不到串口的情況下拋出該異常
e.printStackTrace();
} catch (PortInUseException e) {
//如果因?yàn)槎丝诒徽加枚鴮?dǎo)致打開失敗,則拋出該異常
e.printStackTrace();
} catch (IOException e) {
//如果獲取輸出流失敗,則拋出該異常
e.printStackTrace();
}
}
}
“事件監(jiān)聽模式”是為串口注冊一個(gè)事件監(jiān)聽類,當(dāng)有數(shù)據(jù)到達(dá)串口的時(shí)候就會(huì)觸發(fā)事件,在事件的響應(yīng)方法中讀取串口接收到的數(shù)據(jù)。Com21EventListener類使用“事件監(jiān)聽模式”讀取串口COM21接收到的數(shù)據(jù):
Com21EventListener.java
package com.serialPort.listener;
import java.io.IOException;
import java.io.InputStream;
import java.util.TooManyListenersException;
import javax.comm.CommPortIdentifier;
import javax.comm.NoSuchPortException;
import javax.comm.PortInUseException;
import javax.comm.SerialPort;
import javax.comm.SerialPortEvent;
import javax.comm.SerialPortEventListener;
/**
* Com21EventListener類使用“事件監(jiān)聽模式”監(jiān)聽串口COM21,
* 并通過COM21的輸入流對象來獲取該端口接收到的數(shù)據(jù)(在本文中數(shù)據(jù)來自串口COM11)。
* 使用“事件監(jiān)聽模式”監(jiān)聽串口,必須字定義一個(gè)事件監(jiān)聽類,該類實(shí)現(xiàn)SerialPortEventListener
* 接口并重寫serialEvent方法,在serialEvent方法中編寫監(jiān)聽邏輯。
*/
public class Com21EventListener implements SerialPortEventListener {
//1.定義變量
CommPortIdentifier com21 = null;//未打卡的端口
SerialPort serialCom21 = null;//打開的端口
InputStream inputStream = null;//輸入流
//2.構(gòu)造函數(shù):
//實(shí)現(xiàn)初始化動(dòng)作:獲取串口COM21、打開串口、獲取串口輸入流對象、為串口添加事件監(jiān)聽對象
public Com21EventListener(){
try {
//獲取串口、打開窗串口、獲取串口的輸入流。
com21 = CommPortIdentifier.getPortIdentifier(“COM21”);
serialCom21 = (SerialPort) com21.open(“Com21EventListener”, 1000);
inputStream = serialCom21.getInputStream();
//向串口添加事件監(jiān)聽對象。
serialCom21.addEventListener(this);
//設(shè)置當(dāng)端口有可用數(shù)據(jù)時(shí)觸發(fā)事件,此設(shè)置必不可少。
serialCom21.notifyOnDataAvailable(true);
} catch (NoSuchPortException e) {
e.printStackTrace();
} catch (PortInUseException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
} catch (TooManyListenersException e) {
e.printStackTrace();
}
}
//重寫繼承的監(jiān)聽器方法
@Override
public void serialEvent(SerialPortEvent event) {
//定義用于緩存讀入數(shù)據(jù)的數(shù)組
byte[] cache = new byte[1024];
//記錄已經(jīng)到達(dá)串口COM21且未被讀取的數(shù)據(jù)的字節(jié)(Byte)數(shù)。
int availableBytes = 0;
//如果是數(shù)據(jù)可用的時(shí)間發(fā)送,則進(jìn)行數(shù)據(jù)的讀寫
if(event.getEventType() == SerialPortEvent.DATA_AVAILABLE){
try {
availableBytes = inputStream.available();
while(availableBytes 》 0){
inputStream.read(cache);
for(int i = 0; i 《 cache.length && i 《 availableBytes; i++){
//解碼并輸出數(shù)據(jù)
System.out.print((char)cache[i]);
}
availableBytes = inputStream.available();
}
System.out.println();
} catch (IOException e) {
e.printStackTrace();
}
}
}
//在main方法中創(chuàng)建類的實(shí)例
public static void main(String[] args) {
new Com21EventListener();
}
}
讀寫程序的聯(lián)合運(yùn)行
串口能接收到數(shù)據(jù)的前提是該串口處于打開(可用)狀態(tài),如果串口處于關(guān)閉狀態(tài),那么發(fā)送到該串口的數(shù)據(jù)就會(huì)丟失。所以在實(shí)驗(yàn)的過程中,如果使用銅線連接同一個(gè)串口的引腳2和引腳3,一定要注意的是千萬不能在向串口發(fā)送完數(shù)據(jù)之后關(guān)閉該串口,然后再次打開串口去讀取數(shù)據(jù),一定要讓串口始終處于打開狀態(tài)直到程序運(yùn)行結(jié)束。
評論
查看更多