JAVA 串口編程(二)


三、實例

(1)打開、關閉串口

首先使用CommPortIdentifier中的方法,獲取可用的端口,並且選擇一個端口打開作為通信端口。

A:枚舉可用端口

 

void listPortChoices() 
{
     CommPortIdentifier portId;
     Enumeration en = CommPortIdentifier.getPortIdentifiers();
      while (en.hasMoreElements()) 
       {
         portId = (CommPortIdentifier) en.nextElement();
         if (portId.getPortType() == CommPortIdentifier.PORT_SERIAL) 
         System.out.println(portId.getName());
10         }
11         portChoice.select(parameters.getPortName());
12   }
13   
14   

 

B:打開指定的端口

CommPortIdentifier portId;
try 
{
  //生成CommPortIdentifier類的實例
  portId = CommPortIdentifier.getPortIdentifier("COM4");
} 
catch (NoSuchPortException e)
{
   e.printStackTrace();
10  }
11  try 
12  {
13      //打開串口COM4,設置超時時限為3000毫秒
14      serialPort = (SerialPort) portId.open("testApp", 3000);
15  } 
16  catch (PortInUseException e)
17  {
18      e.printStackTrace();
19  }
20   
21   
 

C:關閉端口

使用完的端口,必須記得將其關閉,否則其它的程序將無法使用該端口,CommPortIdentifier類只提供了開啟端口的方法,而要關閉端口,則要調用CommPort類的close()方法。

serialPort.close()

(2)設置串口參數

try {
    try {
        serialPort.setSerialPortParams(9600, //  波特率
                                       SerialPort.DATABITS_8,//  數據位數
                                       SerialPort.STOPBITS_1, //  停止位
                                       SerialPort.PARITY_NONE);//  奇偶位
    } 
    catch (UnsupportedCommOperationException e)
     {
10          e.printStackTrace();
11      }
12   

(3)串口的讀、寫

A:向串口寫數據

    OutputStream outputStream;
    try
    {
        outputStream = serialPort.getOutputStream();
    } 
    catch (IOException e)
     {
        e.printStackTrace();
    }
10      bt = new byte[] { (byte) 0x55, (byte) 0xAA, (byte) 0xF1 };
11      try
12      {
13          outputStream.write(bt);
14          outputStream.flush();
15          outputStream.close();
16      }
17      catch (IOException e)
18       {
19          e.printStackTrace();
20      }
21   

B:讀取串口中的數據

讀操作,需繼承SerialPortEventListener接口。為SerialPort添加監聽Listener。實現該接口的serialEvent (SerialPortEvent event)方法。

        public class SerialRead implements SerialPortEventListener{
       
            InputStream inputStream;
            byte[] rBuffer = new byte[38];
             SerialRead(SerialPort serialPort)
             {
                try {
                    serialPort.addEventListener((SerialPortEventListener) this);
                    this.serialPort.notifyOnDataAvailable(true);
10         
11                  } catch (TooManyListenersException e) {
12                  }
13             
14                  try {
15                      if (serialPort != null)
16                          inputStream = serialPort.getInputStream();
17                  } catch (IOException e) {
18                  }
19                  }
20               
21              public void serialEvent(SerialPortEvent event) 
22              {
23                  if (event.getEventType() == SerialPortEvent.DATA_AVAILABLE)
24                  { 
25                      int count = 0;
26                      try 
27                      {
28                          while ((ch = inputStream.read()) != -1) 
29                          {       
30                              bt[count++]=(byte)ch;
31                          }
32                      }
33                      catch (IOException e) 
34                      {
35                          e.printStackTrace();
36                      }
37                  }   
38              }
39   


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM