0

我正在尝试解析一些 JSON 并将其发送到我的 android 应用程序中的 EditText 字段。我最近发现我遇到的一个错误源于我的 StringBuilder 的内容。我没有使用我的 StringBuilder,而是将一个 json 样本硬编码为一个字符串并将其发送到 EditText 字段。这很好用,我得到了我正在寻找的价值。但是我需要通过访问我正在使用的 API 而不是硬编码来工作。下面是我的 JSON Parser 类。有没有一种方法可以在 inputStream 关​​闭之前附加后检查我的 stringBuilder 中的内容。这样我就可以解决这个问题并将我的 jSon 返回到 stringBuilder.toString() 而不是硬编码它。

package com.apitest.rottentomatoestest;

import java.io.*;
import org.apache.http.*;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.*;

import android.util.Log;

public class JSONParser {

static InputStream inputStream = null;
static JSONObject jObject = null;
static String jSon = "";

public JSONParser() {
    // TODO Auto-generated constructor stub
}

public JSONObject getJSONFromUrl(String url){

    //Make HTTP Request
    try {
        //defaultHttpClient
        DefaultHttpClient httpClient = new DefaultHttpClient();
        HttpPost httpPost = new HttpPost(url);

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

    } catch (UnsupportedEncodingException e){
        e.printStackTrace();
    } catch (ClientProtocolException e){
        e.printStackTrace();
    }catch (IOException e){
        e.printStackTrace();
    }

    try {
        BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream, "UTF-8"), 8);
        StringBuilder stringBuilder = new StringBuilder();
        String line = null;
        while ((line = reader.readLine()) != null){
            stringBuilder.append(line + "\n");
        }
        inputStream.close();

        jSon = "{\"cast\":[{\"id\":\"162661723\",\"name\":\"Snoop Dogg\"}]}";

    } catch (Exception e){
        Log.e("Buffer Error", "Error converting result " + e.toString());
    }
    //try to parse the string to JSON Object
    try {
        jObject = new JSONObject(jSon);

    } catch (JSONException e){
        Log.e("JSON Parser", "Error parsing data " + e.toString());
    }
    //return JSON String
    return jObject;
}

}

4

3 回答 3

0

您可以使用:

Log.d("JSON Contents", stringBuilder.toString());

就在你关闭 inputStream 之前。

更新:该596 Service Not Found消息通常是由不正确的 URL引起的。

于 2012-08-17T00:02:24.917 回答
0

尝试这样做:

BufferedReader reader = new BufferedReader(new InputStreamReader(inputStream));
于 2012-08-17T00:29:44.600 回答
0

您可以org.json.JSONObject用于将 JSON 解析为可用的 Java 对象。

于 2012-08-17T09:19:18.370 回答