html 中文乱码 HTML超链接中文乱码问题分析及解决方法_HTML/Xhtml_网页制作
程序员文章站
2022-03-29 21:52:59
...
Vm中一个超链接URL需要拼接中文作为Get请求的参数。如果直接拼接,传到后台Action的参数对象中后取出会是乱码,需要编码后再拼接到URL上。
解决方法是在Action中添加一个成员变量,保存编码后的中文参数。在vm页面渲染时取出这个变量值,再拼接超链接。
在这里碰到的问题是:调用java.net.URLEncoder的encode()方法时,如果没有显示指定字符集参数,那么URLEncoder会使用默认字符集。这个默认字符集在Eclipse里跑main()方法和在Tomcat里跑Web应用,得到的结果不一样,所以影响了编码的结果。
/**
* Translates a string into
* format. This method uses the platform'sdefault encoding
* as the encoding scheme to obtain thebytes for unsafe characters.
*
* @param s
* @deprecated The resulting string mayvary depending on the platform's
* default encoding. Instead, use theencode(String,String)
* method to specify the encoding.
* @return the translated
*/
@Deprecated
public static String encode(String s) {
String str = null;
try {
str = encode(s, dfltEncName);
} catch(UnsupportedEncodingException e) {
// The system should always have theplatform default
}
return str;
}
方法的注释中也说明了不建议使用的原因是,这个encode(String)方法依赖于平台字符集。
解决方法是在Action中添加一个成员变量,保存编码后的中文参数。在vm页面渲染时取出这个变量值,再拼接超链接。
在这里碰到的问题是:调用java.net.URLEncoder的encode()方法时,如果没有显示指定字符集参数,那么URLEncoder会使用默认字符集。这个默认字符集在Eclipse里跑main()方法和在Tomcat里跑Web应用,得到的结果不一样,所以影响了编码的结果。
复制代码
代码如下:/**
* Translates a string into
x-www-form-urlencoded
* format. This method uses the platform'sdefault encoding
* as the encoding scheme to obtain thebytes for unsafe characters.
*
* @param s
String
to betranslated. * @deprecated The resulting string mayvary depending on the platform's
* default encoding. Instead, use theencode(String,String)
* method to specify the encoding.
* @return the translated
String
. */
@Deprecated
public static String encode(String s) {
String str = null;
try {
str = encode(s, dfltEncName);
} catch(UnsupportedEncodingException e) {
// The system should always have theplatform default
}
return str;
}
方法的注释中也说明了不建议使用的原因是,这个encode(String)方法依赖于平台字符集。
上一篇: 例题 8-6 两亲性分子(Amphiphilic Carbon Molecules, ACM/ICPC Shanghai 2004, UVa1606)
下一篇: PHP服务器端多进程编程实战_PHP教程
推荐阅读
-
HTML5在IE10、火狐下中文乱码问题的解决方法
-
HTML5在IE10、火狐下中文乱码问题的解决方法
-
网页中文乱码问题_html/css_WEB-ITnose
-
网页中文乱码问题_html/css_WEB-ITnose
-
label标签使用过程中遇到的问题分析及解决思路_HTML/Xhtml_网页制作
-
HTML5在IE10、火狐下中文乱码问题的解决方法_html5教程技巧
-
html 中文乱码 HTML超链接中文乱码问题分析及解决方法_HTML/Xhtml_网页制作
-
HTML5在IE10、火狐下中文乱码问题的解决方法_html5教程技巧
-
html 中文乱码 HTML超链接中文乱码问题分析及解决方法_HTML/Xhtml_网页制作
-
html中textarea的使用及常见问题及案例分析_HTML/Xhtml_网页制作