`
tal
  • 浏览: 37646 次
  • 性别: Icon_minigender_1
  • 来自: 北京
社区版块
存档分类
最新评论

16进制字符转字符串

    博客分类:
  • JAVA
阅读更多
public static void main(String[] args) {
String a = "移动";//移动
String [] b = a.split("&#");
int i = 0;
for (String str : b) {
if (!"".equals(b[i++])) {
b[i-1] = str.replace(";", "");
char c= (char)Integer.valueOf(Integer.toString(new Integer(b[i-1]),   16),16).intValue();
System.out.println(c);
}
}
}
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics