在Page指令中加入一句:
<%@ page contentType="text/html;charset=gb2312"%>
一切都OK了!

解决方案 »

  1.   

    我的页面中都加了,不行.
    我在具体点
    在A.jsp中有一句
    response.sendRedirect("p_tel_meisai.jsp?msg=" + "中文" );
    在Message.jsp中有
    strGet=request.getParameter("msg");
    out.print(strGet);
    当定位到Message.jsp时浏览器的地址栏显示的是Message.jsp?msg=??
      

  2.   

    http://www.csdn.net/develop/list_article.asp?search_key=jsp
      

  3.   

    strvalue=new String(strGet.getBytes("ISO8859_1"),"GB2312");换成strvalue=new String(strGet.getBytes("GBK"))试一试!