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

代码实现native2assci

时间:2014-10-19 01:20:21      阅读:182      评论:0      收藏:0      [点我收藏+]

标签:style   blog   color   os   ar   for   sp   div   log   

 1 public static void main(String[] args) {
 2         String unicode = "";
 3         String s="用户名";
 4         char[] charAry = new char[s.length()];
 5         for(int i=0; i<charAry.length; i++) {
 6           charAry[i] = (char)s.charAt(i);
 7            unicode+="\\u" + Integer.toString(charAry[i], 16);
 8         }
 9         System.out.println(unicode);
10     }

 

代码实现native2assci

标签:style   blog   color   os   ar   for   sp   div   log   

原文地址:http://www.cnblogs.com/liun1994/p/4034132.html

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