-2

不幸的是,我不能说太多,只是它失败了。我试图了解如何为 Android 解析 JSON 数组。以下是我现在所拥有的。我敢肯定它离工作很近。我已经尝试过断点来查看它究竟在哪里出错,但它并没有那么远。

我的代码:

package com.example.testers;

import java.io.BufferedReader;
import java.io.DataOutputStream;
import java.io.InputStreamReader;
import java.net.HttpURLConnection;
import java.net.URL;

import javax.net.ssl.HttpsURLConnection;

import org.json.JSONArray;
import org.json.JSONException;
import org.json.JSONObject;

import android.os.Bundle;
import android.app.Activity;
import android.view.Menu;

public class MainActivity extends Activity {

    private final String USER_AGENT = "Mozilla/5.0";

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        JSONArray mJsonArray = null;
        try {
            mJsonArray = new JSONArray(sendGet());
        } catch (JSONException e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        } catch (Exception e) {
            // TODO Auto-generated catch block
            e.printStackTrace();
        }
        JSONObject mJsonObject = new JSONObject();
        for (int i = 0; i < mJsonArray.length(); i++) {
            try {
                mJsonObject = mJsonArray.getJSONObject(i);
                mJsonObject.getString("id");
                mJsonObject.getString("title");
                mJsonObject.getString("post");
                mJsonObject.getString("author");
                mJsonObject.getString("tags");
                mJsonObject.getString("datePosted");

            } catch (JSONException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }

    @Override
    public boolean onCreateOptionsMenu(Menu menu) {
        // Inflate the menu; this adds items to the action bar if it is present.
        getMenuInflater().inflate(R.menu.main, menu);
        return true;
    }

    private String sendGet() throws Exception {

        String url = "http://www.craftbrothers.net/news/app.php";

        URL obj = new URL(url);
        HttpURLConnection con = (HttpURLConnection) obj.openConnection();

        // optional default is GET
        con.setRequestMethod("GET");

        // add request header
        con.setRequestProperty("User-Agent", USER_AGENT);

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'GET' request to URL : " + url);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(new InputStreamReader(
                con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        // print result
        return response.toString();

    }

    // HTTP POST request
    private void sendPost() throws Exception {

        String url = "https://selfsolve.apple.com/wcResults.do";
        URL obj = new URL(url);
        HttpsURLConnection con = (HttpsURLConnection) obj.openConnection();

        // add request header
        con.setRequestMethod("POST");
        con.setRequestProperty("User-Agent", USER_AGENT);
        con.setRequestProperty("Accept-Language", "en-US,en;q=0.5");

        String urlParameters = "sn=C02G8416DRJM&cn=&locale=&caller=&num=12345";

        // Send post request
        con.setDoOutput(true);
        DataOutputStream wr = new DataOutputStream(con.getOutputStream());
        wr.writeBytes(urlParameters);
        wr.flush();
        wr.close();

        int responseCode = con.getResponseCode();
        System.out.println("\nSending 'POST' request to URL : " + url);
        System.out.println("Post parameters : " + urlParameters);
        System.out.println("Response Code : " + responseCode);

        BufferedReader in = new BufferedReader(new InputStreamReader(
                con.getInputStream()));
        String inputLine;
        StringBuffer response = new StringBuffer();

        while ((inputLine = in.readLine()) != null) {
            response.append(inputLine);
        }
        in.close();

        // print result
        System.out.println(response.toString());

    }


}
4

1 回答 1

0

首先,您没有对尝试从 JSON 响应解析的值做任何事情。你打电话时

mJsonObject.getString(String)

您没有将getString()结果分配给任何东西,因此您肯定不会在您的 UI 或任何日志中看到它。

此外,MainActivity#onCreate()在 UI 线程(也称为主线程)上调用。 您不应该在主线程上执行网络操作,因为它会阻塞用户的 UI(冻结)。

您通常应该使用AsyncTask之类的东西在后台执行网络请求,然后在任务的onPostExecute()方法中将结果显示到 UI。

根据您运行的 Android 版本,如果您在 UI 线程上发出此请求,系统实际上可能会抛出异常,就像您一样。

于 2013-06-25T23:10:32.993 回答