1. 首页
  2. 数据库
  3. 其它
  4. Android与单片机通信常用数据转换方法总结

Android与单片机通信常用数据转换方法总结

上传者: 2021-01-17 00:37:16上传 PDF文件 46.45KB 热度 2次
Android与单片机通信常用数据转换方法 1. 将GB2312转化为中文,如BAFAC2DCB2B7→胡萝卜,两个字节合成一个文字 public static String stringToGbk(String string) throws Exception { byte[] bytes = new byte[string.length() / 2]; for (int j = 0; j < bytes.length; j++) { byte high = Byte.parseByte(string.substring(j * 2, j * 2 + 1),
下载地址
用户评论