如何解决回调的乱码问题

2024年11月14日 14:02
有1个网友回答
网友(1):

BufferedReader br = new BufferedReader(new InputStreamReader(System.in,"UTF-8"));
System.out.print("请输入学生所在地:");
String location = new String(br.readLine().getBytes("GBK"),"UTF-8");
System.out.println(location);