JSP表单提交出现中文乱码的解决方法

2021-06-24 13:02

阅读:565

标签:cti   tom   cto   tchar   提交   justify   post   nbsp   servlet   

1)post方式

servletdoGet( )  doPost( )  中增加以下代码:

 response.setContentType("text/html;charset=utf-8");

 request.setCharacterEncoding("utf-8");

 2)get方式

  在tomcatcon/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


评论


亲,登录后才可以留言!