package pte.stone;
import java.io.ByteArrayInputStream;
import java.io.DataInputStream;
/**
* Converter between byte[] to hexadecimal String.
*
* @author stone
*
*/
public class ConverterBetweenHexStringAndByteArray {
/**
* Convert byte[] to hexadecimal String.
*
* @param bytea
* @return
* @throws Exception
*/
public static String byteArr2HexStr1(byte[] bytea) throws Exception {
String sHex = "";
DataInputStream dis = new DataInputStream(new ByteArrayInputStream(
bytea));
int iUnsigned = 0;
StringBuffer sbHex = new StringBuffer();
while (true) {
iUnsigned = dis.read();
if (iUnsigned == -1) {
break;
}
if (iUnsigned < 16) {
sbHex.append("0");
}
sbHex.append(Integer.toString(iUnsigned, 16));
}
sHex = sbHex.toString();
return sHex;
}
/**
* Convert byte[] to hexadecimal String.
*
* @param bytea
* @return
* @throws Exception
*/
public static String byteArr2HexStr2(byte[] bytea) throws Exception {
String sHex = "";
int iUnsigned = 0;
StringBuffer sbHex = new StringBuffer();
for (int i = 0; i < bytea.length; i++) {
iUnsigned = bytea[i];
if (iUnsigned < 0) {
iUnsigned += 256;
}
if (iUnsigned < 16) {
sbHex.append("0");
}
sbHex.append(Integer.toString(iUnsigned, 16));
}
sHex = sbHex.toString();
return sHex;
}
/**
* Convert hexadecimal String to byte[].
*
* @param sHex
* @return
* @throws Exception
*/
public static byte[] hexStr2ByteArr(String sHex) throws Exception {
byte[] bytea = new byte[sHex.length() / 2];
String sHexSingle = "";
for (int i = 0; i < bytea.length; i++) {
sHexSingle = sHex.substring(i * 2, i * 2 + 2);
bytea[i] = (byte) Integer.parseInt(sHexSingle, 16);
}
return bytea;
}
}
test case
package pte.stone.test;
import org.junit.Assert;
import org.junit.Test;
import pte.stone.ConverterBetweenHexStringAndByteArray;
public class ConverterBetweenHexStringAndByteArrayTest {
@Test
public void testByteArr2HexStr1() throws Exception{
byte[] bytea1={0,1,126,127};
byte[] bytea2={-128,-127,-2,-1};
String sHex1=ConverterBetweenHexStringAndByteArray.byteArr2HexStr1(bytea1);
String sHex2=ConverterBetweenHexStringAndByteArray.byteArr2HexStr1(bytea2);
String sHex1Exp="00017e7f";
String sHex2Exp="8081feff";
Assert.assertEquals(sHex1Exp, sHex1);
Assert.assertEquals(sHex2Exp, sHex2);
}
@Test
public void testByteArr2HexStr2() throws Exception{
byte[] bytea1={0,1,126,127};
byte[] bytea2={-128,-127,-2,-1};
String sHex1=ConverterBetweenHexStringAndByteArray.byteArr2HexStr2(bytea1);
String sHex2=ConverterBetweenHexStringAndByteArray.byteArr2HexStr2(bytea2);
String sHex1Exp="00017e7f";
String sHex2Exp="8081feff";
Assert.assertEquals(sHex1Exp, sHex1);
Assert.assertEquals(sHex2Exp, sHex2);
}
@Test
public void testHexStr2ByteArr()throws Exception{
String sHex1="00017e7f";
String sHex2="8081feff";
byte[] bytea1=ConverterBetweenHexStringAndByteArray.hexStr2ByteArr(sHex1);
byte[] bytea2=ConverterBetweenHexStringAndByteArray.hexStr2ByteArr(sHex2);
byte[] bytea1Exp={0,1,126,127};
byte[] bytea2Exp={-128,-127,-2,-1};
Assert.assertArrayEquals(bytea1Exp, bytea1);
}
}
分享到:
相关推荐
基于java的贝儿米幼儿教育管理系统答辩PPT.pptx
本压缩包资源说明,你现在往下拉可以看到压缩包内容目录 我是批量上传的基于SpringBoot+Vue的项目,所以描述都一样;有源码有数据库脚本,系统都是测试过可运行的,看文件名即可区分项目~ |Java|SpringBoot|Vue|前后端分离| 开发语言:Java 框架:SpringBoot,Vue JDK版本:JDK1.8 数据库:MySQL 5.7+(推荐5.7,8.0也可以) 数据库工具:Navicat 开发软件: idea/eclipse(推荐idea) Maven包:Maven3.3.9+ 系统环境:Windows/Mac
基于java的消防物资存储系统答辩PPT.pptx
项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse
项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse
TA_lib库(whl轮子),直接pip install安装即可,下载即用,非常方便,各个python版本对应的都有。 使用方法: 1、下载下来解压; 2、确保有python环境,命令行进入终端,cd到whl存放的目录,直接输入pip install TA_lib-xxxx.whl就可以安装,等待安装成功,即可使用! 优点:无需C++环境编译,下载即用,方便
使用软件自带的basic脚本编辑制作的脚本 低版本软件无法输出Excel报告,可以通过脚本方式实现这一功能
基于java的就业信息管理系统答辩PPT.pptx
25法理学背诵逻辑.apk.1g
基于java的大学生校园兼职系统答辩PPT.pptx
做到代码,和分析的源数据
本压缩包资源说明,你现在往下拉可以看到压缩包内容目录 我是批量上传的基于SpringBoot+Vue的项目,所以描述都一样;有源码有数据库脚本,系统都是测试过可运行的,看文件名即可区分项目~ |Java|SpringBoot|Vue|前后端分离| 开发语言:Java 框架:SpringBoot,Vue JDK版本:JDK1.8 数据库:MySQL 5.7+(推荐5.7,8.0也可以) 数据库工具:Navicat 开发软件: idea/eclipse(推荐idea) Maven包:Maven3.3.9+ 系统环境:Windows/Mac
项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse
适用于ensp已经入门人群的学习,有一定难度
基于java的数码论坛系统设计与实现答辩PPT.pptx
tornado-6.4.1-cp38-abi3-macosx_10_9_universal2.whl
基于java的医院信管系统答辩PPT.pptx
项目经过测试均可完美运行! 环境说明: 开发语言:java jdk:jdk1.8 数据库:mysql 5.7+ 数据库工具:Navicat11+ 管理工具:maven 开发工具:idea/eclipse
tornado-4.2.tar.gz