Java 串口数据收发

环境


开发环境: win7 64、java 8、RXTXcomm(mfz-rxtx-2.2)、IntelliJ IDEA 2019.1.1 x64

方法一、
  • 解压 mfz-rxtx-2.2
  • RXTXcomm.jar 拷贝至 %JAVA_HOME%\jre\lib\ext
  • rxtxSerial.dllrxtxParallel.dll拷贝至 %JAVA_HOME%\jre\bin
  • 在IDEA新建工程后,选择菜单 File -> Project Structure(ctrl+alt+shift+s) -> Modules -> Dependencies ,如下图,点击最右侧加号,弹出小菜单,点击第一个选项,再选择需要添加的jar 包就可以了。
    Java 串口数据收发_第1张图片
方法二(推荐)、

新建 Gradle 工程,修改工程中 build.gradle 文件如下:

plugins {
    id 'java'
}

group 'Demo'
version '1.0-SNAPSHOT'

sourceCompatibility = 1.8

repositories {
    mavenLocal()
    mavenCentral()
}

dependencies {
    testCompile group: 'junit', name: 'junit', version: '4.12'
    implementation 'org.bidib.jbidib.org.qbang.rxtx:rxtxcomm:2.2'
}

只要配置好build.gradle 文件,Gradle就会自动下载依赖包,而不需要手动添加了。

程序代码

import gnu.io.*;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.ArrayList;
import java.util.Enumeration;
import java.util.List;
import java.util.TooManyListenersException;

public class SerialComm {

    public static void main(String[] args) throws IOException {
        //获得系统端口列表
        getSystemPort();
        //开启端口
        final SerialPort serialPort = openSerialPort("COM5", 115200);
        //启动一个线程,每2s 向串口发送数据,发送1000次 hello
        new Thread(new Runnable() {
            @Override
            public void run() {
                int i = 1;
                while (i<1000) {
                    if (serialPort != null) {
                        String s = "hello \n";
                        byte[] bytes = s.getBytes();
                        SerialComm.sendData(serialPort, bytes);
                    }
                    i++;
                    try {
                        Thread.sleep(1000);
                    } catch (InterruptedException e) {
                        e.printStackTrace();
                    }
                }
            }
        }).start();
        //设置串口的listener
        SerialComm.setListenerToSerialPort(serialPort, new SerialPortEventListener() {
            @Override
            public void serialEvent(SerialPortEvent serialPortEvent) {
                if (serialPortEvent.getEventType() == SerialPortEvent.DATA_AVAILABLE) { //数据通知
                    byte[] bytes = SerialComm.readData(serialPort);
                    System.out.println("收到的数据长度: " + bytes.length);
                    System.out.println("收到的数据:" + new String(bytes));
                }
            }
        });
        //closeSerialPort(serialPort);
    }


    /**
     * 获得系统可用端口的列表
     * @return 可用的端口名称列表
     */
    @SuppressWarnings("unchecked")
    public static List<String> getSystemPort() {
        List<String> systemPorts = new ArrayList<>();
        //获得系统可用的端口
        Enumeration<CommPortIdentifier> portList = CommPortIdentifier.getPortIdentifiers();
        while (portList.hasMoreElements()) {
            String portName = portList.nextElement().getName();
            systemPorts.add(portName);
        }
        System.out.println("系统可用端口列表: " + systemPorts);
        return systemPorts;
    }

    /**
     * 开启串口
     * @param serialPortName 串口名称
     * @param baudRete  波特率
     * @return 串口对象
     */
    public static SerialPort openSerialPort(String serialPortName, int baudRete) {
        try {
            // 通过端口名称得到端口
            CommPortIdentifier portIdentifier = CommPortIdentifier.getPortIdentifier(serialPortName);
            // 打开端口  自定义名字,打开超时时间
            CommPort commPort = portIdentifier.open(serialPortName, 2222);
            // 判断是不是串口
            if (commPort instanceof SerialPort) {
                SerialPort serialPort = (SerialPort) commPort;
                //设置串口参数(波特率,数据位8, 停止位1, 校验位无)
                serialPort.setSerialPortParams(baudRete, SerialPort.DATABITS_8, SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
                System.out.println("串口开启成功,串口名称: " + serialPortName);
                return serialPort;
            } else {
                //是其他类型端口
                throw new NoSuchPortException();
            }
        } catch (NoSuchPortException | PortInUseException | UnsupportedCommOperationException e) {
            e.printStackTrace();
        }
        return null;
    }

    /**
     * 关闭串口
     * @param serialPort 要关闭的串口对象
     */
    public static void closeSerialPort(SerialPort serialPort) {
        if(serialPort != null) {
            serialPort.close();
            System.out.println("关闭串口:" + serialPort.getName());
            serialPort = null;
        }
    }

    /**
     * 向串口发送数据
     * @param serialPort 串口对象
     * @param data 发送的数据
     */
    public static void sendData(SerialPort serialPort, byte[] data) {
        OutputStream os = null;
        try {
            os = serialPort.getOutputStream(); //获取串口的输出流
            os.write(data);
            os.flush();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (os != null) {
                    os.close();
                    os = null;
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
    }

    /**
     * 从串口读取数据
     * @param serialPort 要读取的串口
     * @return 读取的数据
     */
    public static byte[] readData(SerialPort serialPort) {
        InputStream is = null;
        byte[] bytes = null;
        try {
            is = serialPort.getInputStream(); //获得串口的输入流
            int bufflenth = is.available(); //获取数据长度
            while (bufflenth != 0) {
                bytes = new byte[bufflenth];
                int read = is.read(bytes);
                bufflenth = is.available();
            }
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            try {
                if (is != null) {
                    is.close();
                    is = null;
                }
            } catch (IOException e) {
                e.printStackTrace();
            }
        }
        return bytes;
    }

    public static void setListenerToSerialPort(SerialPort serialPort, SerialPortEventListener listener) {
        try {
            //给串口添加事件监听
            serialPort.addEventListener(listener);
        } catch (TooManyListenersException e) {
            e.printStackTrace();
        }
        serialPort.notifyOnDataAvailable(true);//串口有数据监听
        serialPort.notifyOnBreakInterrupt(true);//中断事件监听
    }
}

源码

你可能感兴趣的:(Java)