gpt4 book ai didi

java 串口通信实现流程示例

转载 作者:qq735679552 更新时间:2022-09-27 22:32:09 24 4
gpt4 key购买 nike

CFSDN坚持开源创造价值,我们致力于搭建一个资源共享平台,让每一个IT人在这里找到属于你的精彩世界.

这篇CFSDN的博客文章java 串口通信实现流程示例由作者收集整理,如果你对这篇文章有兴趣,记得点赞哟.

1、下载64位rxtx for java 链接:http://fizzed.com/oss/rxtx-for-java 。

2、下载下来的包解压后按照说明放到JAVA_HOME即JAVA的安装路径下面去 。

3、在maven的pom.xml下添加 。

?
1
2
3
4
5
< dependency >
  < groupId >org.rxtx</ groupId >
  < artifactId >rxtx</ artifactId >
  < version >2.1.7</ version >
</ dependency >

4、串口API 。

  CommPort:端口的抽象类   CommPortIdentifier:对串口访问和控制的核心类   SerialPort:通过它可以直接对串口进行读、写及设置工作 。

5、列出本机可用端口 。

?
1
2
3
4
5
Enumeration<CommPortIdentifier> em = CommPortIdentifier.getPortIdentifiers();
   while (em.hasMoreElements()) {
    String name = em.nextElement().getName();
    System.out.println(name);
  }

6、一般步骤:打开串口得到串口对象==》设置参数==》对串口进行读写==》关闭串口,其中对串口进行读操作比较常用 。

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//打开串口
  CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier( "COM4" ); //COM4是串口名字
  CommPort commPort = portIdentifier.open( "COM4" , 2000 );  //2000是打开超时时间
  serialPort = (SerialPort) commPort;
   //设置参数(包括波特率,输入/输出流控制,数据位数,停止位和齐偶校验)
  serialPort.setSerialPortParams( 9600 ,
  SerialPort.DATABITS_8, SerialPort.STOPBITS_1,
  SerialPort.PARITY_NONE);
   //监听串口事件
  serialPort.addEventListener( new Abc()); //Abc是实现SerialPortEventListener接口的类,具体读操作在里面进行
   // 设置当有数据到达时唤醒监听接收线程
  serialPort.notifyOnDataAvailable( true );
   // 设置当通信中断时唤醒中断线程
  serialPort.notifyOnBreakInterrupt( true );
   //  in.close(); //关闭串口

Abc类内容,即读串口的具体操作:

?
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
public class Abc implements SerialPortEventListener {
   public void serialEvent(SerialPortEvent arg0) {
     // TODO Auto-generated method stub
     //对以下内容进行判断并操作
     /*
     BI -通讯中断
     CD -载波检测
     CTS -清除发送
     DATA_AVAILABLE -有数据到达
     DSR -数据设备准备好
     FE -帧错误
     OE -溢位错误
     OUTPUT_BUFFER_EMPTY -输出缓冲区已清空
     PE -奇偶校验错
     RI - 振铃指示
     */
     //switch多个,if单个
     if (arg0.getEventType() == SerialPortEvent.DATA_AVAILABLE) {
       try {
         InputStream in = null ;
         byte [] bytes = null ;
         in = App.serialPort.getInputStream();
 
         int bufflenth = in.available();
         while (bufflenth != 0 ) {
           // 初始化byte数组为buffer中数据的长度
           bytes = new byte [bufflenth];
           in.read(bytes);
           System.out.println( new String(bytes));
           bufflenth = in.available();
         }
        
       } catch (Exception e) {
         // TODO Auto-generated catch block
         e.printStackTrace();
       }
     }
  
}

写操作:

?
1
2
3
OutputStream out = serialPort.getOutputStream();
out.write(data); //byte[] data;
out.flush();

总结 。

以上就是本文关于java 串口通信实现流程示例的全部内容,希望对大家有所帮助。如有问题可以随时留言,期待您的宝贵意见.

原文链接:http://www.cnblogs.com/zhylioooo/p/7886189.html 。

最后此篇关于java 串口通信实现流程示例的文章就讲到这里了,如果你想了解更多关于java 串口通信实现流程示例的内容请搜索CFSDN的文章或继续浏览相关文章,希望大家以后支持我的博客! 。

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com