码迷,mamicode.com
首页 > 其他好文 > 详细

字符串转Hex编码

时间:2015-06-12 17:10:10      阅读:102      评论:0      收藏:0      [点我收藏+]

标签:

public static String toHex(String str){
        try {
            byte[] bytes = str.getBytes("GBK");
            StringBuilder sb = new StringBuilder(bytes.length * 2);
            //转换hex编码
            for (byte b : bytes) {
                sb.append(Integer.toHexString(b + 0x800).substring(1));
            }
            return sb.toString();
        } catch (UnsupportedEncodingException e) {
            log.error(e);
        }
        return null;
    }

 

字符串转Hex编码

标签:

原文地址:http://www.cnblogs.com/longzhaoyu/p/4571938.html

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