JSP中文乱码常见3个例子及其解决方法

常见3个例子及其解决方法如下

实例一、JSP页面显示时

<html>
  <head>
    <title>中文乱码——JSP页面显示时</title>
  </head>
  <body>
    <center>
      <br/>
      <h1>木兰辞拟古决绝词柬友</h1>
      <p>人生若只如初见,何事秋风悲画扇。</p>
    <p>等闲变却故人心,却道故人心易变。</p>
    <p>骊山语罢清宵半,泪雨霖铃终不怨。</p>
    <p>何如薄幸锦衣郎,比翼连枝当日愿。</p>
    </center>
  </body>
</html>

运行结果:

解决方法:为其指定中文字符集,<html>前加入

<%@ page contentType="text/html;charset=gb2312" %>

实例二、JSP页面传递中文参数时

注册页面:

<%@ page contentType="text/html;charset=gb2312" %>
<html>
  <head>
    <title>中文乱码——JSP页面传递中文参数时</title>
  </head>
  <body>
    <h2>申请账号:</h2>
    <form action="userMsg.jsp" method="POST">
      <p>邮箱: <input type="text"name="email" id="email"/><p/>
      <p>昵称: <input type="text"name="nickname" id="nickname"/><p/>
      <p>密码: <input type="password"name="password" id="password"/><p/>
      <p>性别: <input type="radio"name="sex" id="sex"value="男" /> 男
             <input type="radio" name="sex"id="sex" value="女" /> 女<p/>
      <textarea name="introduction"id="introduction" rows="5" cols="27">一句话介绍自己...</textarea>
      <p><input type="submit"value="提交申请"></p>
    </form>
  </body>
</html> 

个人信息页面:

<%@ page contentType="text/html;charset=gb2312" %>
<html>
  <head>
    <title>中文乱码——JSP页面传递中文参数时 </title>
  </head>
  <body>
    <center>
      <h2>用户信息:</h2>
      <% String email = request.getParameter("email"); %>
      <% String nickname = request.getParameter("nickname"); %>
      <% String password = request.getParameter("password"); %>
      <% String sex = request.getParameter("sex"); %>
      <% String introduction = request.getParameter("introduction");%>
      <p>邮箱: <% out.print(email); %><p/>
      <p>昵称: <% out.print(nickname); %><p/>
      <p>密码: <% out.print(password); %><p/>
      <p>性别: <% out.print(sex); %><p/>
      <p>个人介绍:<%out.print(introduction); %></p>
    </center>
  </body>
</html>

运行结果:

解决方法:修改个人信息页面如下

<%@ page contentType="text/html;charset=gb2312" %>
<html>
  <head>
    <title>中文乱码——JSP页面传递中文参数时 </title>
  </head>
  <body>
    <h2>用户信息:</h2>
    <% String email = newString(request.getParameter("email").getBytes("ISO-8859-1"), "gb2312");%>
    <% String nickname = newString(request.getParameter("nickname").getBytes("ISO-8859-1"), "gb2312");%>
    <% String password = newString(request.getParameter("password").getBytes("ISO-8859-1"), "gb2312");%>
    <% String sex = newString(request.getParameter("sex").getBytes("ISO-8859-1"), "gb2312");;%>
    <% String introduction = newString(request.getParameter("introduction").getBytes("ISO-8859-1"), "gb2312");;%>
    <p>邮箱: <% out.print(email); %><p/>
    <p>昵称: <% out.print(nickname); %><p/>
    <p>密码: <% out.print(password); %><p/>
    <p>性别: <% out.print(sex); %><p/>
    <p>个人介绍:<%out.print(introduction); %></p>
  </body>
</html> 

实例三、Servlet处理中文参数时

注册页面:

<%@ page contentType="text/html;charset=gb2312" %>
<%@ page import="test.UserMsg"%>
<html>
  <head>
    <title>中文乱码——JSP页面传递中文参数时</title>
  </head>
  <body>
    <h2>申请账号:</h2>
    <form action="./UserMsg" method="POST">
      <p>邮箱: <input type="text"name="email" id="email"/><p/>
      <p>昵称: <input type="text"name="nickname" id="nickname"/><p/>
      <p>密码: <input type="password"name="password" id="password"/><p/>
      <p>性别: <input type="radio"name="sex" id="sex"value="男" /> 男
             <input type="radio" name="sex"id="sex" value="女" /> 女<p/>
      <textarea name="introduction"id="introduction" rows="5" cols="27">一句话介绍自己...</textarea>
      <p><input type="submit"value="提交申请"></p>
    </form>
  </body>
</html> 

UserMsg.java(Servlet)

package test; 

importjava.io.IOException;
importjava.io.PrintWriter;
importjava.io.UnsupportedEncodingException; 

importjavax.servlet.http.HttpServlet;
importjavax.servlet.http.HttpServletRequest;
importjavax.servlet.http.HttpServletResponse;
public classUserMsg extends HttpServlet{
   public void doGet(HttpServletRequestrequest,
         HttpServletResponse response){
      doPost(request, response);
   }
   public void doPost(HttpServletRequestrequest,
         HttpServletResponse response){
      try {
         request.setCharacterEncoding("gb2312");
      } catch (UnsupportedEncodingExceptione) {
         e.printStackTrace();
      }
      PrintWriter out = null;
      try {
         out = response.getWriter();
      } catch (IOException e1) {
         e1.printStackTrace();
      }
      out.print("<html>");
      out.print("<body>");
      out.print("<h2>" +"用户信息:"+ "</h2>");
      out.print("<p>"+"邮箱:"+request.getParameter("email")+"<p/>");
      out.print("<p>"+"昵称:"+request.getParameter("nickname")+"<p/>");
      out.print("<p>"+"密码:"+request.getParameter("password")+"<p/>");
      out.print("<p>"+"性别:"+request.getParameter("sex")+"<p/>");
      out.print("<p>"+"个人介绍:"+request.getParameter("introduction")+"<p/>");
      out.print("</html>");
      out.print("</body>");
   }
} 

运行结果:

解决方法:在doPost中加入:

response.setContentType("text/html; charset=gb2312");

以上就是几种常见JSP中文乱码例子及其解决方法,希望能够帮助大家解决JSP中文乱码的问题。

(0)

相关推荐

  • JSP用过滤器解决request getParameter中文乱码问题

    (1)客户端的数据一般是通过HTTP GET/POST方式提交给服务器,在服务器端用request.getParameter()读取参数时,很容易出现中文乱码现象. (2)用过滤器解决request中文乱码问题. (3)代码如下: package my; import java.io.*; import javax.servlet.*; import javax.servlet.http.*; public class ChineseFilter implements Filter { //定义

  • 分享JSP中文乱码解决方法

    一.JSP页面中文乱码 在JSP页面中,中文显示乱码有两种情况:一种是HTML中的中文乱码,另一种是在JSP中动态输出的中文乱码. 先看一个JSP程序: <%@ page language="java" import="java.util.*" %> <html> <head> <title>中文显示示例</title> </head> <body> 这是一个中文显示示例: <

  • jsp超链接中文乱码的解决方法

    直接修改tomcat下的conf/server.xml 找到该段代码,直接添加红色部分代码就可以 <Connector port="8080" URIEncoding="UTF-8" protocol="HTTP/1.1" connectionTimeout="20000" redirectPort="8443" />

  • javascript通过url向jsp页面传递中文参数导致乱码解决方案

    2013-1-16 10:35:49 org.apache.tomcat.util.http.Parameters processParameters 警告: Parameters: Character decoding failed. Parameter 'id' with value '%u8BA2%u5355' has been ignored. Note that the name and value quoted here may corrupted due to the failed

  • jsp和servlet操作mysql中文乱码问题的解决办法

    首先看是从什么地方开始出现的乱码,只要统一编码,就不会出现乱码,下面以uft-8(个人认为最好)为例,详细说明: 1.如果乱码是从jsp页面出现的,jsp头部页面加上:<%@ page language="java" pageEncoding="UTF-8" %>在head标签中加上标签. 2.如果乱码是在servlet中出现的,则有两种方法:一种是在每个servlet中doget和doPost方法头部加上request.setCharacterEnco

  • jsp传值中文乱码问题解决方法示例介绍

    在jsp中,我们经常从数据库读取数据返回客户端,但我们常常在制作时出现乱码现象,所以我们可以用<%request.setCharacterEncoding("UTF-8");%>这个方法来保证中文的正确输出,下面举个例子吧, 我们要接住表单的值或者把数据库数据打印出来的之前,先把<%request.setCharacterEncoding("UTF-8");%>放在他们的前面,然后,表单的提交方式必须是post,即method="p

  • jsp地址栏传中文显示乱码解决方法分享

    test1.jsp页面: 复制代码 代码如下: <%@ page language="java" import="java.util.*" pageEncoding="utf-8"%><!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"><html>  <head>    <title>My JS

  • JSP页面中超链接传递中文参数出现乱码问题解决方法

    本文实例讲述了JSP页面中超链接传递中文参数出现乱码问题解决方法.分享给大家供大家参考,具体如下: 这里分析超链接传递中文参数,在接受页面中出现乱码问题的解决方法. 解决方法: 在接受页面里可以如下处理, 复制代码 代码如下: <%=new String(request.getParameter("变量名字").getBytes("ISO-8859-1")) %> 注意这里用的是 new String() 创建一个新的字符串 例题: 页面一: <h

  • 通过过滤器(Filter)解决JSP的Post和Request中文乱码问题

    jsp代码: import javax.servlet.*; import javax.servlet.http.*; public class CharsetFilter implements Filter { public void destroy() { } public void doFilter(ServletRequest request, ServletResponse response, FilterChain chain) { try { HttpServletRequest

  • JSP+ MySQL中文乱码问题post提交乱码解决方案

    写了两个jsp页面index.jsp和mysql_insert.jsp.数据处理流程为:在浏览器(chrome)上访问index.jsp后在其表单上输入数据,提交至mysql_insert.jsp,mysql_insert.jsp首先将接收到的数据按变量存入MySQL的html_db数据库的person_tb中(该表原有部分数据),然后mysql_insert.jsp再拿出该表中所有数据显示在mysql_insert.jsp页面上. 现在发现,当提交的数据中含有中文(比如变量姓名的值为中文)时,

随机推荐