博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
十六进制转为字符串
阅读量:6843 次
发布时间:2019-06-26

本文共 696 字,大约阅读时间需要 2 分钟。

hot3.png

public static void main(String[] args) throws UnsupportedEncodingException {    String s = "%E9%BB%98%E9%BB%98%E5%A4%A7";    s = s.replace("%", "");    System.out.println(s);    s = s.replace(" ", "");    byte[] baKeyword = new byte[s.length() / 2];    for (int i = 0; i < baKeyword.length; i++) {        try {            baKeyword[i] = (byte) (0xff & Integer.parseInt(                    s.substring(i * 2, i * 2 + 2), 16));        } catch (Exception e) {            e.printStackTrace();        }    }    try {        s = new String(baKeyword, "utf-8");        System.out.println(s);    } catch (Exception e1) {        e1.printStackTrace();    }}

转载于:https://my.oschina.net/marjeylee/blog/783218

你可能感兴趣的文章
重温.NET下Assembly的加载过程
查看>>
华先胜:城市大脑模仿者众多,揭秘阿里原版真正的技术实力
查看>>
使用 redis 缓存的经验
查看>>
硬盘修复专题帖
查看>>
udev安全补丁
查看>>
oracle修改归档日志路径
查看>>
自动化运维工具Ansible实战(七)playbook循环
查看>>
struts2标签常用
查看>>
SecureCRT 绝佳背景字体配色方案, 保护你的眼睛
查看>>
Python3中request模块访问网页以及客户端伪装
查看>>
lvm lvextend vgdisplay xfs_growfs
查看>>
中文图片验证码
查看>>
堡垒机
查看>>
puppet一键部署lnmt
查看>>
Flex 动态创建 多个曲线图/柱形图 ColumnSeries
查看>>
http中post和get的区别
查看>>
从硬盘安装ubuntu的方法
查看>>
TCPDUMP中文手册
查看>>
apache 403 forbidden 错误解决方法
查看>>
ERP实施流程-步骤
查看>>