可是项目要求用sqlserver 7.0 啊

解决方案 »

  1.   

    在jsp页面中加
    <%
        response.setContentType("text/html");
    %>
      

  2.   

    加入以下方法:
    static public String GBKToISO88591( String str ){
    if( str == null ) return str;
      try{
    return new String( str.getBytes( "GBK" ), "8859_1" );
    }
    catch( Exception  usex ){
    return str;
    }
    } static public String ISO88591ToGBK( String str ){
    if( str == null ) return str;
    try{
    return new String( str.getBytes( "8859_1" ), "GBK" );
    }
    catch( Exception  usex ){
    return str;
    }
    }