我需要呼叫一个 RESTful API 来取得 JSON 格式资料,
资料为中文,编码为 UTF-8,目前使用 HttpURLConnection 来处理。
但碰到一个问题,所取得的资料编码为 UTF-8 没错,并不是乱码,
不过所看到的资料都呈现 \u65e5\u85e5\u672c\u8216 之类的格式,
看的到 UTF-8 的编码方式,却无法转成中文,
不知道有没有人知道如何处理?
或是有没有比 HttpURLConnection 更好用的 package?
先感谢大家帮忙 <(_ _)>
程式码如下:
String url = "http://xxx/xxx"; // RESTful API 网址
HttpURLConnection con = (HttpURLConnection) new URL(url).openConnection();
con.setDoOutput(true);
con.setRequestMethod("POST");
con.setRequestProperty("Content-Type", "application/json;charset=UTF-8");
con.setRequestProperty("Accept", "application/json;charset=UTF-8");
con.connect();
OutputStream out = con.getOutputStream();
out.write(parameters().getBytes()); // 传递某些参数过去
out.close();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream(), "UTF-8"));
String line;
while ((line = in.readLine()) != null) {
System.out.println(line);
}
in.close();
con.disconnect();