JIVE在WINDOWS下的中文顯示問題的解決

bluezone發表於2003-01-28
我已經把JIVE在WINDOWS下的中顯示問題都解決啦!
1設定資料庫時 serverURL=jdbc:mysql://localhost/jive?useUnicode=true&characterEncoding=GBK
2.把所有JSP的編碼換成<%@ page contentType="text/html;charset=GBK" %>
3.如果還有顯示不出(如日期)的就用這個函式轉換
public class ISOtoGBK {
public static String convert( String str ) {
try {
byte[] bytesStr=str.getBytes( "ISO-8859-1" ) ;
return new String( bytesStr, "GBK" ) ;
}
catch( Exception ex ) {
return str ;
}
}
}

相關文章