62,635
社区成员




public class Test2 {
public static void main(String[] args) {
try {
String s = "ㅦㅧㅳㅳㅳd你好";//s就是你从数据库取出的数据
System.out.println(new String(s.getBytes("utf-8"),"utf-8"));
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
}
}
}