struts2 method="get" 的中文乱码解决


今天的是SSH2的搜索并显示的功能,把今天的要点总结一下吧!

1. struts2的默认状态下,提交的中文信息到Action中就显示为乱码,此时我的form的method="post",这时解决中文乱码的方法可以修改struts-core-XXX.jar下的org.apache.struts2包下的default.properties 下的struts.i18n.encoding=UTF-8 改为GBK,或者在struts.xml文件中加入
<constant name="struts.i18n.encoding" value="GBK"/>
还有一个办法就是在自己的struts.properties中加入struts.i18n.encoding=GB18030

2.上述的方法只适合于method="post"的form提交,而当我使用method="get"进行提交时,中文字符又出现了乱码,这时就要去更改Tomcat的server.xml文件了,要修改的是Connector标签下加入属性 URIEncoding="GBK"



你可能感兴趣的:(apache,tomcat,xml,struts)