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

解决方案 »

  1.   

    加上它:<%request.setCharacterEncoding="GBK";%>
      

  2.   

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

  3.   

    http://www.csdn.net/develop/read_article.asp?id=21760
      

  4.   

    <%@ page contentType="text/html; charset=GBK" %>
    注意书写啦不要用中文的标点
      

  5.   

    服务器端语言设置:
    <%@ page contentType="text/html; charset=GB2312"%>
    客户端语言设置:
    <meta http-equiv="content-type" content="text/html; charset=gb2312">
    显示应该没有问题了
      

  6.   

    从你的问题来看是客户端没有指定编码格式.提交的时候表单没有指定编码格式.在jsp中加上
    <meta http-equiv="content-type" content="text/html; charset=gb2312">
    一般来说不加好象也可以.除非你的操作系统编码格式不是GBK,你的操作系统是什么?