request.getParameter("name")之后,把它转换一下,String strvalue = new String(strvalue.getBytes("ISO8859_1"), "GBK");
就可以了!!

解决方案 »

  1.   

    name=new String(request.getParameter("name").getBytes("ISO8859_1"));
      

  2.   

    试一试 :
    1:在jsp页面加入:
    <%@ page contentType="text/html; charset=gb2312" %>
     2:在servlet里面:
      public void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
        response.setContentType("text/html; charset=gb2312");//这是重要的3:上面的如果在不行就用如下的方法在数据入库前进行调用:
    public static String UnicodeToChinese(String s){
      try{
         if(s==null||s.equals("")) return "";
         String newstring=null;
         newstring=new String(s.getBytes("ISO8859_1"),"gb2312");
         return newstring;
        }
      catch(UnsupportedEncodingException e)
      {
      return s;
      }
      }public static String ChineseToUnicode(String s){
      try{
      if(s==null||s.equals("")) return "";
      String newstring=null;
      newstring=new String(s.getBytes("gb2312"),"ISO8859_1");
       return newstring;
      }
      catch(UnsupportedEncodingException e)
      {
      return s;
     }
      }4:)解决weblogic/webshpere中文问题:
    在web.xml文件中需要配置中文环境。r如下:
    <context-param>
      <param-name>weblogic.httpd.inputCharset./*</param-name>
      <param-value>GB2312</param-value>
    </context-param>
      

  3.   

    有方法可解决::
       在你的JAVABEAN 中调用方法给以转化。
    方法自己写哦!