JSP表单提交出现中文乱码的解决方法
2021-06-24 13:02
标签:cti tom cto tchar 提交 justify post nbsp servlet 1)post方式 在servlet的doGet( ) doPost( ) 中增加以下代码: response.setContentType("text/html;charset=utf-8"); request.setCharacterEncoding("utf-8"); 2)get方式 在tomcat中con/server.xml中修改 connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" /> 以上代码中URIEncoding="UTF-8"原来是没有的,添加上可以解决中文乱码问题。 JSP表单提交出现中文乱码的解决方法 标签:cti tom cto tchar 提交 justify post nbsp servlet 原文地址:http://www.cnblogs.com/lm970585581/p/7158090.html
文章标题:JSP表单提交出现中文乱码的解决方法
文章链接:http://soscw.com/index.php/essay/97982.html