js、java编码(乱码)问题

[color=blue] 一种方式[/color]
/*
* 在前台要先双编,在后台取在解
* js代码
* var str = "中文";
* str = encodeURI(str); 1编
* str = encodeURI(str); 2编
* java代码
* String content = request.getParameter("str");
* content = java.net.URLDecoder.decode(content, "UTF-8"); 解码
*/
[color=blue] 二种方式[/color]
String content = new String(request.getParameter("loginid").getBytes("ISO-8859-1"), "UTF-8");直接写;
[color=blue]三种方式ajax提交[/color]
js:
encodeURIComponent(encodeURIComponent(value));
java:
URLDecoder.decode(value,"UTF-8");
其它的就要看乱码情况来解决eg:过滤器;

你可能感兴趣的:(javascript,Java,Ajax,.net)