串口开发,数据类型转换——字符串转 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,一经查实,立即删除!

相关文章

Problem Collection II 构造

ARC 093B 转载于:https://www.cnblogs.com/Patt/p/8727324.html

了解栈内存堆内存

由于 java 有垃圾回收机制&#xff0c;所以往往不太会去关注栈堆的内存分配问题&#xff0c;直至OOM 一、了解栈堆概念 1、堆【存储对象创建实例】 程序开始运行时&#xff0c;JVM从OS获取一些内存&#xff0c;部分是堆内存。堆内存通常在存储地址的底层&#xff0c;向上排列…

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…

python列表

列表概念 • 有序的集合 • 通过偏移来索引&#xff0c;从而读取数据 • 支持嵌套 • 可变的类型 • 内置函数列表创建方式 定义列表&#xff1a; • 在python中定义列表需要使用方括号&#xff0c;列表中的项目都包含 在方括号中&#xff0c;项目之间使用逗号分隔。列表中的数…

onSaveInstanceState与onRestoreInstanceState何时调用、如何使用

简单使用实例 protected void onSaveInstanceState(Bundle outState) {// 被销毁前缓存一些数据outState.putString("name", "l_yqing");LgqLogPlus.d("进来了。。rw32r32。。。");super.onSaveInstanceState(outState); }protected void onRes…

Only fullscreen opaque activities can request orientation

安卓8异常 Only fullscreen opaque activities can request orientation 解决方法&#xff1a; android:theme"style/tDrawer" 添加如下属性 <item name"android:windowIsTranslucent">false</item> <item name"android:windowDis…

第八篇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;百度网盘 请输入提取码

MySQL -- SQL 语句

一. 数据库&#xff08;Database&#xff09;操作 创建数据库create database 数据库名 create database 数据库名 character set 字符集 查看数据库查看数据库服务器中的所有的数据库&#xff1a;show databases; 查看某个数据库的定义信息&#xff1a;show create database 数…