Java实现中⽂字符串与unicode互转⼯具类本⽂实例为⼤家分享了Java实现中⽂字符串与unicode互转的具体代码,供⼤家参考,具体内容如下
原理利⽤了java实现js的escape以及unescape函数。
/**
* 中⽂字符串和unicode互转⼯具类 <br>
*
* @author hkb <br>
*/
public class UnicodeConvertUtils {
/**
* 实现js的escape函数
*
* @param input
*      待传⼊字符串
* @return
*/
public static String escape(String input) {
int len = input.length();中文字符unicode查询
int i;
char j;
StringBuffer result = new StringBuffer();
for (i = 0; i < len; i++) {
j = input.charAt(i);
if (Character.isDigit(j) || Character.isLowerCase(j) || Character.isUpperCase(j)) {
result.append(j);
} else if (j < 256) {
result.append("%");
if (j < 16) {
result.append("0");
}
result.String(j, 16));
} else {
result.append("%u");
result.String(j, 16));
}
}
String();
}
/**
* 实现js的unescape函数
*
* @param input
*      待传⼊字符串
* @return
*/
public static String unescape(String input) {
int len = input.length();
StringBuffer result = new StringBuffer();
int lastPos = 0, pos = 0;
char ch;
while (lastPos < len) {
pos = input.indexOf("%", lastPos);
if (pos == lastPos) {
if (input.charAt(pos + 1) == 'u') {
ch = (char) Integer.parseInt(input.substring(pos + 2, pos + 6), 16);
result.append(ch);
lastPos = pos + 6;
} else {
ch = (char) Integer.parseInt(input.substring(pos + 1, pos + 3), 16);
result.append(ch);
lastPos = pos + 3;
}
} else {
if (pos == -1) {
result.append(input.substring(lastPos));
lastPos = len;
} else {
result.append(input.substring(lastPos, pos));
lastPos = pos;
}
}
}
String();
}
/**
* unicode转中⽂
*
* @param input
*      待传⼊字符串
* @return
*/
public static String toGb2312(String input) {
input = im().replaceAll("(?i)\\\\u", "%u");
return unescape(input);
}
/**
* 中⽂字符串转unicode
*
* @param input
*      待传⼊字符串
* @return
*/
public static String toUnicode(String input) {
input = im();
String output = escape(input).toLowerCase().replace("%u", "\\u");
placeAll("(?i)%7b", "{").replaceAll("(?i)%7d", "}").replaceAll("(?i)%3a", ":")
.replaceAll("(?i)%2c", ",").replaceAll("(?i)%27", "'").replaceAll("(?i)%22", "\"")
.replaceAll("(?i)%5b", "[").replaceAll("(?i)%5d", "]").replaceAll("(?i)%3D", "=")
.
replaceAll("(?i)%20", " ").replaceAll("(?i)%3E", ">").replaceAll("(?i)%3C", "<")
.replaceAll("(?i)%3F", "?").replaceAll("(?i)%5c", "\\");
}
/**
* 测试
*
* @param args
*/
public static void main(String[] args) {
System.out.println(toUnicode("你好"));
System.out.println(toGb2312("\u4f60\u597d"));
/
/ 等同于上⾯
System.out.println(toGb2312("\\u4f60\\u597d"));
}
}
以上就是本⽂的全部内容,希望对⼤家的学习有所帮助,也希望⼤家多多⽀持。

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。