串口开发,数据类型转换——字符串转 byte[],byte[]转二进制,二进制转十进制转byte[],byte[]转十进制,byte[]拼接,校验

 bytez转String

/*** 字节数组转换成对应的16进制表示的字符串** @param src* @return*/
public static String bytes2HexStr(byte[] src) {StringBuilder builder = new StringBuilder();if (src == null || src.length <= 0) {return "";}char[] buffer = new char[2];for (int i = 0; i < src.length; i++) {buffer[0] = Character.forDigit((src[i] >>> 4) & 0x0F, 16);buffer[1] = Character.forDigit(src[i] & 0x0F, 16);builder.append(buffer);}return builder.toString().toUpperCase();
}/*** 十六进制字节数组转字符串** @param src    目标数组* @param dec    起始位置* @param length 长度* @return*/
public static String bytes2HexStr(byte[] src, int dec, int length) {byte[] temp = new byte[length];System.arraycopy(src, dec, temp, 0, length);return bytes2HexStr(temp);
}
BMSID = new String(bytes2, StandardCharsets.US_ASCII).trim();

字符串转 byte[]——含中文

/*** 字符串转byte数组* @param str* @return*/
public static byte[] strTobytes(String str){byte[] b=null,data=null;try{b = str.getBytes("utf-8");//data = new String(b,"utf-8").getBytes("gbk");data = new String(b,"utf-8").getBytes("gb2312");}catch (UnsupportedEncodingException e){e.printStackTrace();}return data;
}

 

字符串命令转 byte[]——不含中文

/*** 把十六进制表示的字节数组字符串,转换成十六进制字节数组** @param* @return byte[]*/
public static byte[] hexStr2bytes(String hex) {int len = (hex.length() / 2);byte[] result = new byte[len];char[] achar = hex.toUpperCase().toCharArray();for (int i = 0; i < len; i++) {int pos = i * 2;result[i] = (byte) (hexChar2byte(achar[pos]) << 4 | hexChar2byte(achar[pos + 1]));}return result;
}

String与byte转换

String s = "这是一段中文字符串";
byte[] b = new byte[0];
try {
    b = s.getBytes("UTF-8");
    String n = new String(b,"UTF-8");
    LgqLogutil.e(".......==="+n);
} catch (UnsupportedEncodingException e) {
    e.printStackTrace();

 byte[]转二进制0010100

public static String convertToBinaryString(byte[] data) {LogPlus.e("###data len   -> " + data.length);StringBuilder sb = new StringBuilder();for (int i = 0, n = data.length; i < n; ++i) {String bin = Integer.toBinaryString(data[i] & 0xFF);StringBuilder binaryStr = new StringBuilder();final int zeroPaddingLen = 8 - bin.length();for (int j = 0; j < zeroPaddingLen; ++j) {binaryStr.append("0");}binaryStr.append(bin);sb.append(binaryStr);}return sb.toString();
}

二进制转十进制转byte[]

 

byte[] dataN = new byte[4];
int[] allLed = new int[32];
int value = Integer.parseInt(convertToBinnaryStr(allLed), 2);
byte[] lengthBytes = ByteUtil.int2Bytes(value, 4);
private String convertToBinnaryStr(int[] allLed) {StringBuilder sb = new StringBuilder();for (int b : allLed) {sb.append(b);}return sb.toString();
}
public static byte[] int2Bytes(int v, int len) {byte[] bytes = new byte[len];for (int i = 0; i < len; i++) {// 高位在前bytes[i] = (byte) ((v >>> (len - i - 1) * 8) & 0xff);}return bytes;
}

 

 byte[]转十进制

public static int byteToInt(byte[] b) {int mask = 0xff;int temp;int n = 0;for (int i = 0; i < b.length; i++) {n <<= 8;temp = b[i] & mask;n |= temp;}return n;
}

byte[]拼接方法

 

byte[] dataN = new byte[6];
byte[] lengthBytes = ByteUtil.int2Bytes(liushui, 4);
System.arraycopy(lengthBytes, 0, dataN, 0, lengthBytes.length);
byte[] buyNumBytes = ByteUtil.int2Bytes(num, 1);
byte[] huodaohaoBytes = ByteUtil.int2Bytes(goodsWayId, 1);
System.arraycopy(huodaohaoBytes, 0, dataN, 4, 1);
System.arraycopy(buyNumBytes, 0, dataN, 5, 1);
setDataN(dataN);

 校验

/*** 异或校验和** @param bytes* @param offset* @param len* @return*/
public static byte getXOR(byte[] bytes, int offset, int len) {// 计算校验和 byte toDiff = 0;// 校验和为除开校验位外的所有数据做异或for (int i = 0; i < len; i++) {toDiff = (byte) (toDiff ^ bytes[i + offset]);}return toDiff;
}
// 计算校验和
byte check = ByteUtil.getXOR(bytes, 0, bytes.length - 1);

 。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。。

/*** 总加和校验* @param data 十六进制字符串* @return 返回校验码*/
public static String checksum(String data) {if (data == null || data.equals("")) {return "";}int total = 0;int len = data.length();int num = 0;while (num < len) {String s = data.substring(num, num + 2);System.out.println(s);total += Integer.parseInt(s, 16);num = num + 2;}/*** 用256求余最大是255,即16进制的FF*/int mod = total % 256;String hex =String.format("%02X", mod);return hex;
}
String jiaoyuan = checksum("85"+datas);

 ----------------------------------------------------------------------------

public static byte[] getXOR(byte[] bytes, int len) {byte[] partBytes = new byte[len];System.arraycopy(bytes,0,partBytes,0,partBytes.length);//LogPlus.e("###hex:" + ByteUtil.bytes2HexStr(partBytes));final short POLYNOMIAL = 0x1021;final int INITIAL_REMAINDER = 0xA1EC;final int TOPBIT = 1 << (16 - 1);int remainder = INITIAL_REMAINDER;for (int ibyte = 0; ibyte < len; ++ibyte) {remainder ^= ((partBytes[ibyte]) << (16 - 8));for (int i = 8; i > 0; --i) {if ((remainder & TOPBIT) != 0) {remainder = (remainder << 1) ^ POLYNOMIAL;} else {remainder = (remainder << 1);}}}byte[] crcBytes = new byte[2];return ByteUtil.long2bytes(remainder, crcBytes, 0, 2);}
// 计算校验和
byte check = ByteUtil.getXOR(bytes, 0, bytes.length - 1);

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/414324.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

dataBinding和retrofit的使用

1、dataBinding使用方法 1、配置dataBinding 2、创建layout类型xml布局文件 3、即可引用 ActivityMainBinding mainBinding; mainBinding DataBindingUtil.setContentView(this, R.layout.activity_main); mainBinding.testte.setText("abcccc"); 2、retrofit的…

使多个线程循环输出0-99-0-99

直接上代码&#xff0c;后面我也有一个问题&#xff0c;关于对象的notifyAll或者notify或者single或者singleAll&#xff0c;唤醒线程是顺序唤醒吗&#xff0c;我这里都是顺序输出了 关于公平与非公平锁的问题&#xff1f;唤醒是公平的&#xff1f;&#xff1f;&#xff1f;又没…

66-Flutter移动电商实战-会员中心_编写ListTile的通用方法

1、界面分析 通过下图我们可以拆分成 4 部分&#xff0c;头部、订单标题区域、订单列表区域、ListTitle同用部分。 2、UI编写 2.1、头部 主要用到了圆形头像裁剪组件-ClipOval 顶部头像区域Widget _topHeader(){ return Container( width: ScreenUtil().setWidth(750), …

Android板实现双屏显示,DisplayManager和Display的使用

非常简单。 效果 1、创建分屏管理类 DisplayController public class DisplayController {public static Display getTargetDisplay() {DisplayManager displayManager (DisplayManager) App.getInstance().getSystemService(Context.DISPLAY_SERVICE);Display[] presentat…

毕业论文管理系统(类图,er图,时序图)

转载于:https://www.cnblogs.com/huahua985/p/8732595.html

67-Flutter中高德地图插件的使用

1、注册和建立高德API应用 高德网站&#xff1a;https://lbs.amap.com/ 控制台-应用管理-创建应用 在创建 Key 2、获得SHA1 进入Flutter项目中的android文件夹内&#xff0c;打开任意一个文件&#xff1a; 比如进入 build.gradle&#xff0c;右上角会有 Open for Editing an…

第八篇Django分页

Django分页 1.复杂版 data []for i in range(1, 302):tmp {"id": i, "name": "alex-{}".format(i)}data.append(tmp)print(data)def user_list(request):# user_list data[0:10]# user_list data[10:20]try:current_page int(request.GET.g…

20179214 《网络攻防实践》第五周学习

20179214 《网络攻防实践》第五周学习 web应用程序体系结构及其安全威胁 web应用程序体系结构 浏览器 标准的web客户端&#xff0c;Web服务器 通常被简单的描述为http守护程序&#xff0c;接受web客户端对资源的请求。Web应用程序 是处于服务器端的业务逻辑&#xff0c;最普遍的…

android studio 4.2.1 下载——安卓12开发

下载地址 &#xff1a;百度网盘 请输入提取码

Python学习——02-Python基础——【9-面向对象进阶】——isinstance(obj,cls)、反射等...

一 isinstance(obj,cls)和issubclass(sub,super) isinstance(obj,cls)检查是否obj是否是类 cls 的对象 1 class Foo(object): 2 pass 3 4 obj Foo() 5 6 isinstance(obj, Foo) issubclass(sub, super)检查sub类是否是 super 类的派生类 1 class Foo(object): 2 pa…

工作261:ele-layont布局使用

<!--页面主体布局--> <template><el-container class"layout"><!--头部组件--><el-header class"element-header" style"height: 80px;line-height: 80px"><global-header /></el-header><el-con…

68-Flutter中极光推送的使用

1、申请极光账号和建立应用 极光推送的官方网址为&#xff1a;https://www.jiguang.cn/ 注册好后&#xff0c;进入服务中心,然后再进入开发者平台&#xff0c;点击创建应用。 这时候会出现新页面&#xff0c;让你填写“应用名称”和上传“应用图标”。 创建完成&#xff0c;极…

工作263:弹性布局 修改样式

<div class"container" style"display: flex;flex-direction: column"><!-- <el-radio-group v-model"mode">--><div ><!-- <el-radio-button class"login-btn" label"0">营销端</el…

MongoDB系列四(索引).

一、索引简介 再来老生常谈一番&#xff0c;什么是索引呢&#xff1f;数据库索引与书籍的索引类似。有了索引就不需要翻整本书&#xff0c;数据库可以直接在索引中查找&#xff0c;在索引中找到条目以后&#xff0c;就可以直接跳转到目标文档的位置&#xff0c;这能使查找速度提…