struts2解决中文乱码问题

1.解决post方法提交出现中文乱码:
(1).jsp页面修改,pageEncoding="UTF-8" 
(2).jsp页面的pageEnconding="GBK" 在struts.xml文件修改
    <struts>
        <constant name="struts.il8n.encoding" value="GBK" /> 
    </struts>
2.解决get方法
tomcat 配置文件中修改
    <Connector port="8080" ... URIEncoding="GBK" />

   
   

你可能感兴趣的:(struts)