我正在尝试从URL获取(JSON格式的)字符串并将其作为Json对象使用。当我将String转换为JSONObject时,我丢失了UTF-8编码。
这是我用来连接到url并获取字符串的函数:
private static String getUrlContents(String theUrl) {
StringBuilder content = new StringBuilder();
try {
URL url = new URL(theUrl);
URLConnection urlConnection = url.openConnection();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream()));
String line;
while ((line = bufferedReader.readLine()) != null) {
content.append(line + "\n");
}
bufferedReader.close();
} catch(Exception e) {
e.printStackTrace();
}
return content.toString();
}
当我从服务器获取数据时,以下代码显示正确的字符:
String output = getUrlContents(url);
Log.i("message1", output);
但是当我将输出字符串转换为JSONObject时,波斯字符会成为像这样的问号??????。 (messages是JSON中数组的名称)
JSONObject reader = new JSONObject(output);
String messages = new String(reader.getString("messages").getBytes("ISO-8859-1"), "UTF-8");
Log.i("message2", messages);
答案 0 :(得分:5)
您告诉Java使用ISO-8859-1将字符串(使用键message
)转换为字节,而不是从这些字节创建新的字符串,解释为UTF-8。
new String(reader.getString("messages").getBytes("ISO-8859-1"), "UTF-8");
你可以简单地使用:
String messages = reader.getString("messages");
答案 1 :(得分:1)
您可以按以下方式更新代码:
private static String getUrlContents(String theUrl) {
StringBuilder content = new StringBuilder();
try {
URL url = new URL(theUrl);
URLConnection urlConnection = url.openConnection();
BufferedReader bufferedReader = new BufferedReader(new InputStreamReader(urlConnection.getInputStream(), "utf-8"));
String line;
while ((line = bufferedReader.readLine()) != null) {
content.append(line).append("\n");
}
bufferedReader.close();
} catch(Exception e) {
e.printStackTrace();
}
return content.toString().trim();
}
答案 2 :(得分:1)
您有两个编码问题:
服务器发送以字符集编码的文本。设置InputStreamReader时,需要传递服务器使用的编码,以便正确解码。字符编码通常在Content-type
HTTP响应的charset
字段中给出。 JSON通常是UTF-8编码,但也可以是合法的UTF-16和UTF-32,因此您需要检查。如果没有指定的编码,则在将字节编组到字符串时将使用您的系统环境,反之亦然。基本上,您应该始终指定字符集。
String messages = new String(reader.getString("messages").getBytes("ISO-8859-1"), "UTF-8");
显然会导致问题(如果你有非ascii字符) - 它将字符串编码为ISO-8995-1,然后尝试将其解码为UTF- 8。
在读取输入流之前,可以使用简单的正则表达式模式从Content-type标头中提取charset
值。我还包括一个整洁的InputStream - >字符串转换器。
private static String getUrlContents(String theUrl) {
try {
URL url = new URL(theUrl);
URLConnection urlConnection = url.openConnection();
InputStream is = urlConnection.getInputStream();
// Get charset field from Content-Type header
String contentType = urlConnection.getContentType();
// matches value in key / value pair
Pattern encodingPattern = Pattern.compile(".*charset\\s*=\\s*([\\w-]+).*");
Matcher encodingMatcher = encodingPattern.matcher(contentType);
// set charsetString to match value if charset is given, else default to UTF-8
String charsetString = encodingMatcher.matches() ? encodingMatcher.group(1) : "UTF-8";
// Quick way to read from InputStream.
// \A is a boundary match for beginning of the input
return new Scanner(is, charsetString).useDelimiter("\\A").next();
} catch(Exception e) {
e.printStackTrace();
}
return null;
}
答案 3 :(得分:0)
不确定这是否有帮助,但您可能会这样做:
JSONObject result = null;
String str = null;
try
{
str = new String(output, "UTF-8");
result = (JSONObject) new JSONTokener(str).nextValue();
}
catch (Exception e) {}
String messages = result.getString("messages");