Request的重定向方法以及中文显示问题

前几天老师给我们的作业当中我发现因为我们用的浏览器的种类不一样。所以大家都出现了中文变成乱码的问题。
在LoginServlet这个Servlet这个类当中,通过使用Request的sendRedirect方法重定向一张网页
我在firefox 浏览器中用输入内容,最后出现了乱码,然后 又在TT和IE当中试了试,没有发现这样的问题。说明firefox对中文支持的不是很好,因此在WEB编程中,希望能加上这一句。这样用什么浏览器都会是中文的了!


login.html


   
        登录页面
   
   
       

           
               
                   
                   
               
               
                   
                   
               
               
                   
                   
               
           
请输用户名:
请输入密码:

       

   


LoginServlet .java

package com.wizard.chenxi.servlet;

import java.io.IOException;

import javax.servlet.ServletException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpServletResponse;

public class LoginServlet extends HttpServlet{
    public void doGet(HttpServletRequest req,HttpServletResponse resp)
                    throws ServletException,IOException{
        resp.setContentType("text/html;charset=gb=2312");
        
        String name = req.getParameter("user");
        String pwd = req.getParameter("password");
        
        if(name!=null && pwd!=null && name.equals("Chenxi") && pwd.equals("1234")){
            resp.sendRedirect("success.html");
            
        }else{
            resp.sendError(HttpServletResponse.SC_SERVICE_UNAVAILABLE,"服务器忙");
        }
    }// end for doGet
    public void doPost(HttpServletRequest req,HttpServletResponse resp)
                    throws ServletException,IOException{
        doGet(req,resp);
    }
}// end for class

success.html


   
        登录成功
   
   
        登录成功,欢迎!
   


web.xml
。。。。。
。。
  
    LoginServlet
    com.wizard.chenxi.servlet.LoginServlet
 

   
    LoginServlet
    /login
 


。。。。。



 

你可能感兴趣的:(JAVA之路)