一般对于数据字符转换可以用
String ss = rs.getString("");
String Convert = new String (ss.getBytes("GBK"),"ISO_8859_1");或
String Convert = new String (ss.getBytes("ISO_8859_1"),"GBK");
同时页面JSP要设置一下!