嗨,我在 2.3 中遇到了 Android JSON Parser 的问题,在 4.0 中一切正常>。
我看他们正在谈论编码(服务器)或其他东西服务器端的其他主题,但我试图在我的所有 JSON 字段中放置“测试”,但问题仍然存在。
这是我的代码:
URL url = new URL(c.getString(R.string.url_ws) + url_ws);
HttpURLConnection connection = (HttpURLConnection) url.openConnection();
connection.setDoOutput(true);
connection.setRequestProperty("Content-Type", "application/x-www-form-urlencoded");
connection.setRequestMethod("POST");
OutputStreamWriter request = new OutputStreamWriter(connection.getOutputStream());
request.write("&test=test");
request.flush();
request.close();
String line;
InputStreamReader isr = new InputStreamReader(connection.getInputStream());
BufferedReader reader = new BufferedReader(isr);
StringBuilder sb = new StringBuilder();
while ((line = reader.readLine()) != null){
sb.append(line + "\n");
}
String json = sb.toString().trim();
try {
JSONObject obj = new JSONObject(json);
} catch (JSONException e) {
e.printStackTrace();
Log.d(Tools.TAG+"/debug JSONException", e.toString());
return null;
}
这是我的例外
debug JSONException(4184): org.json.JSONException: Value of type java.lang.String cannot be converted to JSONObject
我在“Value”和“of”之间看到了双空格,所以我猜问题是一个空字符串,但我不明白。
谢谢。
编辑
这是我的 JSON 中的编码错误,
char a = json.substring(0, 1).charAt(0);
int ascii = (int)a;
Tools.myLog(">"+ascii+"<");
我找到了 65279 个字符
解决方案
编码没有 BOM 的 UTF-8。