每个jsp里都加<%@ page contentType="text/html;charset=gb2312" %>
第二个问题是缓存,你查查以前回答了很多这个问题

解决方案 »

  1.   

    转吗函数
    <%!
    //转码U_to_GB
    public String U_to_GB(String s) throws UnsupportedEncodingException
    {
    String str=s;
    str=new String(s.getBytes("GBK"),"ISO8859_1");
    return str;
    }public String GB_to_U(String s) throws UnsupportedEncodingException
    {
    String str=s;
    str=new String(s.getBytes("ISO8859_1"),"GBK");
    return str;
    }public String send(String s){
    return s;
    }
    %><%@ page contentType="text/html;charset=gb2312" %>
    or
    <%@ page contentType="text/html;charset=GBK" %>