首页 > 其他 > 详细

unicode 中文转换

时间:2016-01-13 11:01:01      阅读:125      评论:0      收藏:0      [点我收藏+]

public static String getStrUnicode(String inStr) {

StringBuffer unicode = new StringBuffer();

char c;

int bit;

String tmp = null;

for (int i = 0; i < inStr.length(); i++) {

c = inStr.charAt(i);

if (c > 255) {

unicode.append("\\u");

bit = (c >>> 8);

tmp = Integer.toHexString(bit);

if (tmp.length() == 1)

unicode.append("0");

unicode.append(tmp);

bit = (c & 0xFF);

tmp = Integer.toHexString(bit);

if (tmp.length() == 1)

unicode.append("0");

unicode.append(tmp);

} else {

unicode.append(c);

}

}

return (new String(unicode));

}


unicode 中文转换

原文:http://session.blog.51cto.com/8308112/1734437

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!