您的位置:首页 > 其它

页面传入后台的参数 乱码问题处理

2011-03-30 10:06 357 查看
JS里JSON传入时,data:'name='+escape(escape("大大大"));

action类中要调用unescape(name)进行解码 将%u5927%u5927%u5927转为“大大大”存入数据库



public static String unescape(String src) {
if (src == null)
return null;
StringBuffer tmp = new StringBuffer();
tmp.ensureCapacity(src.length());
int lastPos = 0, pos = 0;
char ch;
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 if (src.charAt(pos + 1) == ' '
|| src.charAt(pos + 1) == ';') {
tmp.append(src.substring(pos, pos + 1));
lastPos = pos + 1;
} 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();
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: