将&#x编码的内容转为汉字
近期碰到接口返回的部分代码汉字转换成&#x编码格式无法处理数据,所以查找到将&#x编码的内容转为汉字的工具类如下进行记录。
/**
* 将&#x编码的内容转为汉字
* @param &#x编码
* @return 汉字
*/
public static String unescape (String src){
StringBuffer tmp = new StringBuffer();
tmp.ensureCapacity(src.length());
int lastPos=0,pos=0;
char ch;
src = src.replace("&#x","%u").replace(";","");
while (lastPos<src.length()){
pos = src.indexOf("%",lastPos);
if (pos == lastPos){
if (src.charAt(pos+1)=='u'){
ch = (char)Integer.parseInt(src.substring(pos+2,pos+6),16);
tmp.append(ch);
lastPos = pos+6;
}else{
ch = (char)Integer.parseInt(src.substring(pos+1,pos+3),16);
tmp.append(ch);
lastPos = pos+3;
}
} else{
if (pos == -1){
tmp.append(src.substring(lastPos));
lastPos=src.length();
} else{
tmp.append(src.substring(lastPos,pos));
lastPos=pos;
}
}
}
return tmp.toString();
}