java串口通信rxtx-2.1-7-bins-r2方式

采用javacomm20-win32,这个软件包测试时,打包的jar程序无法发现端口

通rxtx-2.1-7-bins-r2方式可以实现,最后采用rxtx-2.1-7-bins-r2这种方案.

 

javacomm20-win32:下载地址:http://download.csdn.net/source/1889462

rxtx-2.1-7-bins-r2:下载地址:http://download.csdn.net/source/1889461

 

串口虚拟软件:http://download.csdn.net/source/1889978

串口信息发送软件:http://download.csdn.net/source/1889970

 

结合以上几种软件,就可以进行java串口通信本地编程测试了

 

串口信息处理的一些基本方法

 /**
  * bytes转换成十六进制字符串
  */
 public static String byte2HexStr(byte[] b) {
  String hs = "";
  String stmp = "";
  for (int n = 0; n < b.length; n++) {
   stmp = (Integer.toHexString(b[n] & 0XFF));
   if (stmp.length() == 1)
    hs = hs + "0" + stmp;
   else
    hs = hs + stmp;
   //if (n  }
  return hs.toUpperCase();
 }
 
 
 /**
  * 数据格式化处理
  */
  public int FormatData(String str,int format){
   int result=0;
   if(format==1)
   {
    //交换高低位
    str=str.substring(2,4)+str.substring(0,2);
   }
   result=Integer.valueOf(str, 16);
   return result;
  }

 

你可能感兴趣的:(其它)