我的sqlServer数据库都是默认的 没有改动过的 但就是中文乱码。
jdbc获取数据一切正常 但是odbc获取数据就中文乱码!!!
尝试了无数个方法!最后求救大佬解决了!
附上代码:
byte []bytes;
bytes = rs.getBytes("bayName");
String name = new String(bytes, "GBK");
System.out.println(name); //正常 不乱码了
String sql = "select * from [user]";
try {
rs = sta.executeQuery(sql);
byte []bytes;
int count = 0;
while (rs.next()) {
String id = rs.getString("bayId");
bytes = rs.getBytes("bayName");
String name = new String(bytes, "GBK");
System.out.println(name);//正常 不乱码了
}