码迷,mamicode.com
首页 > 编程语言 > 详细

使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转

时间:2016-11-16 13:41:58      阅读:438      评论:0      收藏:0      [点我收藏+]

标签:class   comm   binary   字符串   nbsp   字节   apach   char   public   

包名称:org.apache.commons.codec.binary

类名称:org.apache.commons.codec.binary.Hex

1、字节数组(byte[])转为十六进制(Hex)字符串

public static String byte2hex(byte[] input) {
    return Hex.encodeHexString(input);
}

2、十六进制字符串(Hex)转字节数字(byte[])

public static byte[] hex2byte(String input) {
    return Hex.decodeHex(input.toCharArray());
}

 

使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转

标签:class   comm   binary   字符串   nbsp   字节   apach   char   public   

原文地址:http://www.cnblogs.com/frankyou/p/6068828.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!