java字符串转16进制_16进制数和java字符串互转

/**

* Created by ShenLi on 2014/12/19.

* 16进制和字符串互转

*/

public class HexUtils {

public static byte[] hex2String(String hex) {

byte[] bytes = new byte[hex.length()/2];

for(int i =0; i

String subStr = hex.substring(i, i+2);

boolean negative = false; //是否为正数

int inte = Integer.parseInt(subStr,16);

if(inte > 127) negative = false;

if(inte == 128){

inte = -128;

}else if(negative){

inte = 0 - (inte & 0x7F);

}

byte b = (byte)inte;

bytes[i/2] = b;

}

return bytes;

}

private static String byte2hex(byte[] bytes) {

StringBuilder hex = new StringBuilder();

for(int i=0; i

byte b = bytes[i];

int inte = (b 

String temp = Integer.toHexString(inte);

if(temp.length() == 1) {

hex.append("0");

}

hex.append(temp.toLowerCase());

}

return hex.toString();

}

public static void main(String[] args) throws Exception{

String source = "I am source string.";

String hstr = byte2hex(source.getBytes("utf8"));

byte[] bytes = hex2String(hstr);

String resource = new String(bytes);

System.out.printf("source = %s \n hstr = %s \n resource = %s",source,hstr,resource);

}

}

输出截图:

1b79e5eaff86b333f6914303149eedd2.png

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值