【发布时间】:2013-02-27 00:56:45
【问题描述】:
我尝试解析 JSON 对象已经有一段时间了。这里有很多类似的问题,但是没有一个有效的答案。我的代码都不是机密的,所以我在这里发布。
公共类 JSONParser {
static InputStream is = null;
static JSONObject jObj = null;
static String json = "";
// constructor
public JSONParser() {
}
public JSONObject getJSONFromUrl(String url) {
// Making HTTP request
try {
// defaultHttpClient
DefaultHttpClient httpClient = new DefaultHttpClient();
//HttpPost httpPost = new HttpPost(url);
HttpGet httpget = new HttpGet(url);
HttpResponse httpResponse = httpClient.execute(httpGet);
HttpEntity httpEntity = httpResponse.getEntity();
is = httpEntity.getContent();
} catch (UnsupportedEncodingException e) {
e.printStackTrace();
} catch (ClientProtocolException e) {
e.printStackTrace();
} catch (IOException e) {
e.printStackTrace();
}
try {
BufferedReader reader = new BufferedReader(new InputStreamReader(is, "UTF-8"));
// is, "iso-8859-1"), 8);
StringBuilder sb = new StringBuilder();
String line = null;
while ((line = reader.readLine()) != null) {
sb.append(line);
}
is.close();
json = sb.toString();
} catch (Exception e) {
Log.e("Buffer Error", "Error converting result " + e.toString());
}
// try parse the string to a JSON object
try {
JSONTokener tokener = new JSONTokener(json);
jObj = new JSONObject(tokener);
} catch (JSONException e) {
Log.e("JSON Parser", "Error parsing data " + e.toString());
}
// return JSON String
return jObj;
}
}
*edited Get 是必需的,而不是 Post
【问题讨论】:
-
尝试 UTF-8 和/或不要在
sb.append中添加\n -
先不要加\n,JSON没有换行
-
@Shehabix,这不是正确的原因。 JSON 可以根据需要包含尽可能多的空格以使其可读。但是,在上面的代码中,不能保证 readLine 在适当的换行符处返回整行,因为源 url 似乎没有换行符。
-
@323go 是的,你是对的,我的意思是在内容内部而不是在对象之间。
-
我将解析类编辑为建议,但仍像以前一样收到输入错误字符 0 的结尾。也编辑了问题中的代码。
标签: android html json parsing input