0

我在解析 JSON 时遇到了一些问题。主要思路是通过url在SQL数据库中查找数据:

        JSONObject json = jParser.getJSONFromUrl(url + "?numer=" + number);

然后解析它。一切都很好,直到我想找到数据库中不存在的数据。网页返回“[]”,我的 android 应用返回错误“org.json.JSONArray 类型的值 [] 无法转换为 JSONObject”。这是我使用的一段代码。

    public JSONObject getJSONFromUrl(String url) {
        Log.e("Znacznik", "Przed żądaniem http");
        // Making HTTP request
        try {
            // defaultHttpClient
            DefaultHttpClient httpClient = new DefaultHttpClient();
            HttpPost httpPost = new HttpPost(url);

            HttpResponse httpResponse = httpClient.execute(httpPost);
            HttpEntity httpEntity = httpResponse.getEntity();
            is = httpEntity.getContent();           

        } catch (UnsupportedEncodingException e) {
            e.printStackTrace();
        } catch (ClientProtocolException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
        Log.e("Znacznik", "Przed odczytem bufora");
        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "utf8"), 8);
            StringBuilder sb = new StringBuilder();
            String line = null;
            while ((line = reader.readLine()) != null) {
                sb.append(line + "\n");
            }
            is.close();
            json = sb.toString();
        } catch (Exception e) {
            Log.e("Buffer Error", "Error converting result " + e.toString());
        }
        Log.e("Znacznik", "Przed parsowaniem");
        // try parse the string to a JSON object
        try {
            jObj = new JSONObject(json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }
        Log.e("Znacznik", "Przed returnem: "+jObj);
        // return JSON String
        return jObj;

    }
4

3 回答 3

0

{}在这种情况下,服务器应该返回。

如果无法更改服务器的行为,您可以尝试JSONTokener tokener = new JSONTokener(json)检查什么是tokener.nextValue(). 它将是JSONObjectJSONArray

于 2013-10-21T11:01:48.493 回答
0

在您的响应顶部根是 json 数组,它应该首先解析 Json 数组。记录您的 json 响应并查看响应。

[]=> means Json Array
{}=> means Json Object 

如果根是 [ ] 表示 json Array 先解析它

try {
           JsonArray array= new JsonArray (json);
        } catch (JSONException e) {
            Log.e("JSON Parser", "Error parsing data " + e.toString());
        }
于 2013-10-21T11:01:50.163 回答
0

那么,为什么不在null捕获到异常时返回。

try {
    jObj = new JSONObject(json);
} catch (JSONException e) {
    Log.e("JSON Parser", "Error parsing data " + e.toString());
    return null;
}

Log.e("Znacznik", "Przed returnem: "+jObj);
// return JSON String
return jObj;
于 2013-10-21T10:56:42.147 回答