java 串口通信详细及简单实例
java实现串口通信
最近做了一个与硬件相关的项目,刚开始听说用java和硬件打交道,着实下了一大跳。java也可以操作硬件?
后来接触到是用java通过串口通信控制硬件感觉使用起来还不错,也很方便。
特拿出来和大家一起分享一下。
准备工作:
首先到SUN官网下载一个zip包:javacomm20-win32.zip
其中重要的有这几个文件:
win32com.dll
comm.jar
javax.comm.properties
按照说明配置好环境,如下:
将win32com.dll复制到<JDK>\bin目录下;将comm.jar复制到<JDK>\lib;把javax.comm.properties也同样拷贝到<JDK>\lib目录下。然而在真正运行使用串口包的时候,仅作这些是不够的。因为通常当运行“javaMyApp”的时候,是由JRE下的虚拟机启动MyApp的。而我们只复制上述文件到JDK相应目录下,所以应用程序将会提示找不到串口。解决这个问题的方法很简单,我们只须将上面提到的文件放到JRE相应的目录下就可以了
到这一个可以java串口开发环境就搭建完成了
确认本机可以使用的串口:
packagetest;
importjava.util.Enumeration;
importjava.util.HashMap;
importjavax.comm.CommPortIdentifier;
importjavax.comm.SerialPort;
publicclassGetSerialPorts{
publicvoidlistPortChoices(){
CommPortIdentifierportId;
Enumerationen=CommPortIdentifier.getPortIdentifiers();
//iteratethroughtheports.
while(en.hasMoreElements()){
portId=(CommPortIdentifier)en.nextElement();
if(portId.getPortType()==CommPortIdentifier.PORT_SERIAL){
System.out.println(portId.getName());
}
}
}
publicstaticvoidmain(String[]args){
GetSerialPortsGSP=newGetSerialPorts();
GSP.listPortChoices();
}
}
打开串口,关闭串口:
packagetest;
importjava.io.IOException;
importjava.io.InputStream;
importjava.io.OutputStream;
importjava.util.Enumeration;
importjava.util.HashMap;
importjavax.comm.CommPortIdentifier;
importjavax.comm.PortInUseException;
importjavax.comm.SerialPort;
importjavax.comm.UnsupportedCommOperationException;
publicclassGetSerialPorts{
privateCommPortIdentifierportId;
privateSerialPorttestPort;
privateCommPortIdentifiermyPort;
privateInputStreamis;
privateOutputStreamos;
publicvoidlistPortChoices(){
Enumerationen=CommPortIdentifier.getPortIdentifiers();
//iteratethroughtheports.
while(en.hasMoreElements()){
portId=(CommPortIdentifier)en.nextElement();
if(portId.getPortType()==CommPortIdentifier.PORT_SERIAL){
System.out.println(portId.getName());
}
myPort=portId;//任意取一个串口,比如com1
}
}
publicbooleanopenPort(){
try{
testPort=(SerialPort)myPort.open("COM1",500);//注意这里必须换成一个真实的串口
try{
this.testPort.setSerialPortParams(38400,SerialPort.DATABITS_8,
SerialPort.STOPBITS_1,SerialPort.PARITY_EVEN);
}catch(UnsupportedCommOperationExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
try{
this.testPort.enableReceiveTimeout(30);
}catch(UnsupportedCommOperationExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
this.testPort.setOutputBufferSize(1024);
this.testPort.setInputBufferSize(1024);
try{
this.is=this.testPort.getInputStream();
}catch(IOExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
try{
this.os=this.testPort.getOutputStream();
}catch(IOExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
}
this.testPort.notifyOnDataAvailable(true);
this.testPort.notifyOnOutputEmpty(true);
this.testPort.notifyOnBreakInterrupt(true);
//this.printerPort.addEventListener(newPrintPortListener(is));
System.out.println("打开com1机串口成功");
returntrue;
}catch(PortInUseExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
returnfalse;
}
}
/**
*TODO关闭端口
*
*@param
*@returnMap
*@throws
*/
publicbooleanclosePort(){
//TODOAuto-generatedmethodstub
try{
if(null!=this.testPort){
is.close();
os.close();
this.testPort.close();
}
System.out.println("关闭COM1串口成功");
returntrue;
}catch(Exceptione){
//TODOAuto-generatedcatchblock
//e.printStackTrace();
System.out.println("关闭COM1串口失败");
returnfalse;
}
}
publicstaticvoidmain(String[]args){
GetSerialPortsGSP=newGetSerialPorts();
GSP.listPortChoices();
GSP.openPort();
}
}
读数据:
/**
*TODO接收端口數據
*
*@paramInputStream
*@returnString
*@throws
*/
publicStringreadData(InputStreamis){
//读取缓冲区域
byte[]readBuffer=newbyte[4096];
intreadDataLength=0;
try{
readDataLength=is.read(readBuffer);
//for(byteb:readBuffer){
//System.out.print(b);
//}
//System.out.println();
}catch(IOExceptione){
//TODOAuto-generatedcatchblock
e.printStackTrace();
returnnull;
}
//将真实数据保存到零时数组中
byte[]readTemp=newbyte[readDataLength];
for(inti=0;i<readDataLength;i++){
readTemp[i]=readBuffer[i];
}
//将byte数组转换为16进制字符串
StringstringTemp=FeelTheBase.bytesToHexString(readTemp);
//System.out.println("指令返回值"+stringTemp);
returnstringTemp;
}
感谢阅读,希望能帮助到大家,谢谢大家对本站的支持!