Struts2组件损坏非英文字符(中文)
我尝试使用 jsp 创建一个 struts2 组件,并且在两个 jsp 页面中都使用了 UTF-8 标头,但在最终结果中我发现这些符号已损坏。如果我把UTF-8改成GBK就可以了,我想知道为什么'UTF-8'不起作用,谢谢! Struts 版本 2.1.8
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
componentTag.jsp
<s:component template="mytemplate.jsp">
<s:param name="list" value="{'java程序设计','Ajax完全学习手册','Struts2学习手册'">
</s:param>
</s:component>
mytemplate.jsp (/WebRoot/template/xhtml)
<div style="background-color:#eeeeee;" >
<b>JSP自定义模板</b><br/>
图书列表:<s:select list="parameters.list"></s:select>
</div>
I attempted to create a struts2 component using jsp,and I used UTF-8 header in both jsp pages,but in final result I see that those symbols came corrupted. If I change UTF-8 into GBK,it will be ok,I want to kown the reason why 'UTF-8' doesn't work, thanks!!! Struts version 2.1.8
<%@ page contentType="text/html; charset=UTF-8" language="java" import="java.util.*" pageEncoding="UTF-8"%>
<%@ taglib uri="/struts-tags" prefix="s"%>
componentTag.jsp
<s:component template="mytemplate.jsp">
<s:param name="list" value="{'java程序设计','Ajax完全学习手册','Struts2学习手册'">
</s:param>
</s:component>
mytemplate.jsp (/WebRoot/template/xhtml)
<div style="background-color:#eeeeee;" >
<b>JSP自定义模板</b><br/>
图书列表:<s:select list="parameters.list"></s:select>
</div>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
设置JVM启动参数-Dfile.encoding=utf-8
MyEclipse(MyEclipse->首选项->服务器->选择你的版本然后选择JDK设置启动参数)
set the JVM boot parameter of -Dfile.encoding=utf-8
MyEclipse (MyEclipse->preferences->servers->chose your version and then chose JDK to set the boot parameters)
您可以尝试将这些添加到 struts.xml 中
如果 struts.xml 或 struts.properties 中未指定,
struts2会选择你平台的编码(widows默认是gbk)
很高兴遇见你
you may try add these to your struts.xml
if not specified in struts.xml or struts.properties
struts2 will pick the encoding of your platform(of widows it is gbk by default)
很高兴遇见你