在Tomcat6.0中关于JSP/Servlet表单乱码的一个解决方法

来源:互联网 发布:战地1游戏闪退是网络 编辑:程序博客网 时间:2024/06/06 11:46

步骤一:编辑Tomcat的配置文件conf/server.xml在用于接受客户端语法的Connector<connector></connector>标签中添加URIEncoding="UTF-8"属性,该属性用来解决GET中的编码问题。

xml 代码
  1. <Connector port="8080" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" URIEncoding="UTF-8" />



步骤二:在每个需要提交表单参数的JSP/Servlet之前加入下列代码来设置字符集,用于搞定POST请求:

java 代码
  1. request.setCharacterEncoding("UTF-8");



这样基本就搞定了字符乱码问题了,实现上述问题的要求是所有的网页编码必须是UTF-8编码既。
在JSP中:

jsp 代码
  1. <%@page contentType="text/html" pageEncoding="UTF-8"%>

在Servlet中:

java 代码
  1. response.setContentType("text/html;charset=UTF-8");

在所有的网页中:

html代码
  1. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">



以上测试在Tomcat 6.0.14、IE6.0、FireFox2.0.13及Opera9.25中测试通过,开发环境使用netBeans 6.0

附测试代码:

html代码
  1. Document : zc
  2. Created on : 2007-12-22, 17:20:24
  3. Author : 啊春
  4. -->
  5. >
  6. <html>
  7. <head>
  8. <title>title>
  9. <meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
  10. head>
  11. <body>
  12. <form action="/wat1/t1" method="GET">
  13. 姓名:<input type="text" name="name" value="" size="20" />
  14. 密码:<input type="password" name="passwd" value="" size="20" />
  15. <input type="submit" value="注册" />
  16. form>
  17. <br />
  18. <form action="/wat1/t1" method="POST">
  19. 姓名:<input type="text" name="name" value="" size="20" />
  20. 密码:<input type="password" name="passwd" value="" size="20" />
  21. <input type="submit" value="注册" />
  22. form>
  23. body>
  24. html>

 

java 代码
  1. protected void processRequest(HttpServletRequest request, HttpServletResponse response)
  2. throws ServletException, IOException {
  3. response.setContentType("text/html;charset=UTF-8");
  4. PrintWriter out = response.getWriter();
  5. try {
  6. /* TODO output your page here
  7. out.println("");
  8. out.println("");
  9. out.println("");
  10. out.println("");
  11. out.println("");
  12. out.println("

    Servlet t1 at " + request.getContextPath () + "

    ");
  13. out.println("");
  14. out.println("");
  15. */
  16. out.println("Hello 欢迎你的注册");
  17. request.setCharacterEncoding("UTF-8");
  18. String str = request.getParameter("name");
  19. out.println(str);
  20. out.println(request.getParameter("passwd"));
  21. } finally {
  22. out.close();
  23. }
  24. }


原创粉丝点击