程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> JSP編程 >> 關於JSP >> 常見JSP中文亂碼例子及其解決方法

常見JSP中文亂碼例子及其解決方法

編輯:關於JSP

          JSP開發應用是,中文亂碼是個比較常見的問題,其根源是:Web容器默認的字符處理編碼是ISO-8859-1。

    實例一、JSP頁面顯示時

    1. <html> 
    2.     <head> 
    3.        <title>中文亂碼——JSP頁面顯示時</title> 
    4.     </head> 
    5.     <body> 
    6.        <center> 
    7.            <br/> 
    8.            <h1>木蘭辭擬古決絕詞柬友</h1> 
    9.            <p>人生若只如初見,何事秋風悲畫扇。</p> 
    10.        <p>等閒變卻故人心,卻道故人心易變。</p> 
    11.        <p>骊山語罷清宵半,淚雨霖鈴終不怨。</p> 
    12.        <p>何如薄幸錦衣郎,比翼連枝當日願。</p> 
    13.        </center> 
    14.     </body> 
    15. </html> 

    運行結果:

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

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

    實例二、JSP頁面傳遞中文參數時

    注冊頁面:

    1. <%@ page contentType="text/html;charset=gb2312" %> 
    2. <html> 
    3.     <head> 
    4.        <title>中文亂碼——JSP頁面傳遞中文參數時</title> 
    5.     </head> 
    6.     <body> 
    7.        <h2>申請賬號:</h2> 
    8.        <form action="userMsg.jsp" method="POST"> 
    9.            <p>郵箱:&nbsp;<input type="text"name="email" id="email"/><p/> 
    10.            <p>昵稱:&nbsp;<input type="text"name="nickname" id="nickname"/><p/> 
    11.  &n

    bsp;         <p>密碼:&nbsp;<input type="password"name="password" id="password"/><p/> 

    •            <p>性別:&nbsp;<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> 

    個人信息頁面:

    1. <%@ page contentType="text/html;charset=gb2312" %> 
    2. <html> 
    3.     <head> 
    4.        <title>中文亂碼——JSP頁面傳遞中文參數時 </title> 
    5.     </head> 
    6.     <body> 
    7.        <center> 
    8.            <h2>用戶信息:</h2> 
    9.            <% String email = request.getParameter("email"); %> 
    10.            <% String nickname = request.getParameter("nickname"); %> 
    11.            <% String password = request.getParameter("password"); %> 
    12.            <% String sex = request.getParameter("sex"); %> 
    13.            <% String introduction = request.getParameter("introduction");%> 
    14.            <p>郵箱:&nbsp;<

    ;% out.print(email); %><p/> 

    •            <p>昵稱:&nbsp;<% out.print(nickname); %><p/> 
    •            <p>密碼:&nbsp;<% out.print(password); %><p/> 
    •            <p>性別:&nbsp;<% out.print(sex); %><p/> 
    •            <p>個人介紹:<%out.print(introduction); %></p> 
    •        </center> 
    •     </body> 
    • </html> 

    運行結果:

    解決方法:修改個人信息頁面如下

    1. <%@ page contentType="text/html;charset=gb2312" %> 
    2. <html> 
    3.     <head> 
    4.        <title>中文亂碼——JSP頁面傳遞中文參數時 </title> 
    5.     </head> 
    6.     <body> 
    7.        <h2>用戶信息:</h2> 
    8.        <% String email = newString(request.getParameter("email").getBytes("ISO-8859-1"), "gb2312");%> 
    9.        <% String nickname = newString(request.getParameter("nickname").getBytes("ISO-8859-1"), "gb2312");%> 
    10.        <% String password = newString(request.getParameter("password").getBytes("ISO-8859-1"), "gb2312");%> 
    11.        <% String sex = newString(request.getParameter("sex").getBytes("ISO-8859-1"), "gb2312");;%> 
    12.        <% String introduction = newString(request.getParameter("introduction").getBytes("ISO-8859-1"), "gb2312");;%> 
    13.        <p>郵箱: <% out.print(email); %><p/> 
    14.        &


    lt;p>昵稱: <% out.print(nickname); %><p/> 

    •        <p>密碼: <% out.print(password); %><p/> 
    •        <p>性別: <% out.print(sex); %><p/> 
    •        <p>個人介紹:<%out.print(introduction); %></p> 
    •     </body> 
    • </html> 

    實例三、Servlet處理中文參數時

    注冊頁面:

    1. <%@ page contentType="text/html;charset=gb2312" %> 
    2. <%@ page import="test.UserMsg"%> 
    3. <html> 
    4.     <head> 
    5.        <title>中文亂碼——JSP頁面傳遞中文參數時</title> 
    6.     </head> 
    7.     <body> 
    8.        <h2>申請賬號:</h2> 
    9.        <form action="./UserMsg" method="POST"> 
    10.            <p>郵箱: <input type="text"name="email" id="email"/><p/> 
    11.            <p>昵稱: <input type="text"name="nickname" id="nickname"/><p/> 
    12.            <p>密碼: <input type="password"name="password" id="password"/><p/> 
    13.            <p>性別: <input type="radio"name="sex" id="sex"value="男" /> 男  
    14.                          <input type="radio" name="sex"id="sex" value="女" /> 女<p/> 
    15.            <textarea  name="introduction"id="introduction" rows="5" cols="27">一句話介紹自己...</textarea> 
    16.            <p><input type="submit"value="提交申請"></p> 
    17.      &nb


    sp; </form> 

    •     </body> 
    • </html> 

    UserMsg.java(Servlet)

    1. package test;  
    2.    
    3. importjava.io.IOException;  
    4. importjava.io.PrintWriter;  
    5. importjava.io.UnsupportedEncodingException;  
    6.    
    7. importjavax.servlet.http.HttpServlet;  
    8. importjavax.servlet.http.HttpServletRequest;  
    9. importjavax.servlet.http.HttpServletResponse;  
    10. public classUserMsg extends HttpServlet{  
    11.       public void doGet(HttpServletRequestrequest,  
    12.                  HttpServletResponse response){  
    13.            doPost(request, response);  
    14.       }  
    15.       public void doPost(HttpServletRequestrequest,  
    16.                  HttpServletResponse response){  
    17.            try {  
    18.                  request.setCharacterEncoding("gb2312");  
    19.            } catch (UnsupportedEncodingExceptione) {  
    20.                  e.printStackTrace();  
    21.            }  
    22.            PrintWriter out = null;  
    23.            try {  
    24.                  out = response.getWriter();  
    25.            } catch (IOException e1) {  
    26.                  e1.printStackTrace();  
    27.            }  
    28.            out.print("<html>");  
    29.    &nbs


    p;       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中加入:

    1. response.setContentType("text/html; charset=gb2312"); 
    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved