- 论坛徽章:
- 0
|
这是我的接收和发送测试程序
package test;
import java.io.DataOutputStream;
import java.io.FilterOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.io.OutputStreamWriter;
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;
import javax.comm.UnsupportedCommOperationException;
//静态方法只能访问静态变量,如果想访问非静态变量,只能通过声明对象来访问
//静态方法不属于类,在类内方法访问变量不需加对象,类外(例如静态的main函数)需要加对象
public class Transceiver implements SerialPortEventListener {
CommPortIdentifier portId;
private String str;
private InputStream inputStream;
private static byte[] data1={$,03,10,03,10,03,10};
private SerialPort serialPort;
OutputStream outputStream;
String str1;// =new String();
public Transceiver(String com, int foc) {
// 构造函数
try {
portId = CommPortIdentifier.getPortIdentifier(com);
try {
serialPort = (SerialPort) portId.open("SimpleReadApp", 2000);
} catch (PortInUseException e) {
}
try {
serialPort.getFlowControlMode();
try {
serialPort.setFlowControlMode(0);
} catch (UnsupportedCommOperationException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
inputStream = serialPort.getInputStream();
outputStream = serialPort.getOutputStream();
} catch (IOException e) {
}
try {
serialPort.addEventListener(this);// 进行端口监听 , 当事件发生自动调用
// serialEvent方法
} catch (TooManyListenersException e) {
}
serialPort.notifyOnDataAvailable(true);
try {
serialPort.setSerialPortParams(foc, SerialPort.DATABITS_8,
SerialPort.STOPBITS_1, SerialPort.PARITY_NONE);
} catch (UnsupportedCommOperationException e) {
}
} catch (NoSuchPortException e) {
}
}// 构造函数
public void writeport(byte[] buffer) {
try {
outputStream.write(buffer,0,buffer.length);
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
// ////////////////////////////////////////////////////////////////////
// 处理侦听到的串口事件
public void serialEvent(SerialPortEvent event) {
// System.out.println("接收数据...\r\n");
switch (event.getEventType()) {
case SerialPortEvent.BI:// 通讯中断.
case SerialPortEvent.OE:// 溢位错误.
case SerialPortEvent.FE:// 帧错误
case SerialPortEvent.PE:// 奇偶校验错.
case SerialPortEvent.CD:// 载波检测.
case SerialPortEvent.CTS:// 清除发送.
case SerialPortEvent.DSR:// 数据设备准备好
case SerialPortEvent.RI:// 振铃指示.
case SerialPortEvent.OUTPUT_BUFFER_EMPTY:// OUTPUT_BUFFER_EMPTY -
// 输出缓冲区已清空
break;
case SerialPortEvent.DATA_AVAILABLE:// DATA_AVAILABLE - 有数据到达
// float ch;
int ch;
short command;
StringBuffer buf = new StringBuffer();
// 读数据
try {
InputStream input = serialPort.getInputStream();
while ((ch = input.read()) > 0) {
if (ch == 36)
break;
buf.append((char) ch); //会是03(乱码) \n \n 03(乱码) \n \n
}
input.read(data, 0, data.length);//若是用这个读的话就是03 10 10 03 10 10 03 10 10
str = buf.toString();
System.out.println(str);
}
} catch (IOException e) {
}
break;
}
}
public void Close() {
serialPort.close();
}
public static void main(String[] args) {
Transceiver transceiver=new Transceiver("/dev/ttyS0",9600);
while(true){
transceiver.writeport(data1);
Thread.sleep(10);
}
}
} |
|