您现在的位置是:网站首页> 编程资料编程资料
html 中文乱码 HTML超链接中文乱码问题分析及解决方法_HTML/Xhtml_网页制作_
2023-11-12
263人已围观
简介 Vm中一个超链接URL需要拼接中文作为Get请求的参数如果直接拼接,传到后台Action的参数对象中后取出会是乱码,需要编码后再拼接到URL上,接下来将和大家分享一下解决方法
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)方法依赖于平台字符集。
相关内容
- HTML自学之旅(一)基本元素与属性练习(自写代码)_HTML/Xhtml_网页制作_
- 智龙迷城 宠物升级经验表_手机游戏_游戏攻略_
- 锁链战记国服 沙漠之鹰 加法尔介绍_手机游戏_游戏攻略_
- 雷霆战机新版本boss模式掉落什么? 雷霆战机新boss模式掉落装备介绍_手机游戏_游戏攻略_
- 迷你西游魂值获得方法介绍_手机游戏_游戏攻略_
- 天天萌将什么时候出 天天萌将游戏玩法图文攻略_手机游戏_游戏攻略_
- 迷你西游快速升级小心得_手机游戏_游戏攻略_
- 我叫MT 80紫装各副本产出装备快速查询表_手机游戏_游戏攻略_
- 迷你西游人族完美缘搭配攻略_手机游戏_游戏攻略_
- 堕落泰坦官网是什么 堕落泰坦于5月上旬首测_手机游戏_游戏攻略_
