0

我正在尝试检索 JSON 并将其显示在我的模拟器本地的 android 视图中

  • 我使用了一个在线 JSON 链接http://api.androidhive.info/contacts/

一段代码::private static String url = "http://api.androidhive.info/contacts/";

  • 我确实在我的安卓设备上得到了正确的输出
  • 现在我在我的 localpc 上运行 nodeJS,它在端口 9000 上运行

一段代码现在更改为::private static String url = "http://127.0.0.1:9000/";

但是当我使用这个json时,应用程序在模拟器中崩溃......关于它为什么崩溃的任何想法......代码的另一部分为什么我没有给出,因为它工作得很好。在向nodejs显示url wrt时有些模棱两可

AndroidJSONParsingActivity.java

package net.niceandroid.jsonparsing;

import java.util.ArrayList;
import java.util.HashMap;

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

import android.app.ListActivity;
import android.content.Intent;
import android.os.Bundle;
import android.util.Log;
import android.view.View;
import android.widget.AdapterView;
import android.widget.AdapterView.OnItemClickListener;
import android.widget.ListAdapter;
import android.widget.ListView;
import android.widget.SimpleAdapter;
import android.widget.TextView;

public class AndroidJSONParsingActivity extends ListActivity {

    // url to make request
    private static String url = "http://127.0.0.1:9000/";

    // JSON Node names
    private static final String TAG_CONTACTS = "contacts";
    private static final String TAG_ID = "id";
    private static final String TAG_NAME = "name";
    private static final String TAG_EMAIL = "email";
    private static final String TAG_ADDRESS = "address";
    private static final String TAG_GENDER = "gender";
    private static final String TAG_PHONE = "phone";
    private static final String TAG_PHONE_MOBILE = "mobile";
    private static final String TAG_PHONE_HOME = "home";
    private static final String TAG_PHONE_OFFICE = "office";

    // contacts JSONArray
    JSONArray contacts = null;

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // Hashmap for ListView
        ArrayList<HashMap<String, String>> contactList = new ArrayList<HashMap<String, String>>();

        // Creating JSON Parser instance
        JSONParser jParser = new JSONParser();

        // getting JSON string from URL
        JSONObject json = jParser.getJSONFromUrl(url);

        try {
            // Getting Array of Contacts
            contacts = json.getJSONArray(TAG_CONTACTS);

            // looping through All Contacts
            for(int i = 0; i < contacts.length(); i++){
                JSONObject c = contacts.getJSONObject(i);

                // Storing each json item in variable
                String id = c.getString(TAG_ID);
                String name = c.getString(TAG_NAME);
                String email = c.getString(TAG_EMAIL);
                String address = c.getString(TAG_ADDRESS);
                String gender = c.getString(TAG_GENDER);

                // Phone number is agin JSON Object
                JSONObject phone = c.getJSONObject(TAG_PHONE);
                String mobile = phone.getString(TAG_PHONE_MOBILE);
                String home = phone.getString(TAG_PHONE_HOME);
                String office = phone.getString(TAG_PHONE_OFFICE);

                // creating new HashMap
                HashMap<String, String> map = new HashMap<String, String>();

                // adding each child node to HashMap key => value
                map.put(TAG_ID, id);
                map.put(TAG_NAME, name);
                map.put(TAG_EMAIL, email);
                map.put(TAG_PHONE_MOBILE, mobile);

                // adding HashList to ArrayList
                contactList.add(map);
            }
        } catch (JSONException e) {
            e.printStackTrace();
        }


        /**
         * Updating parsed JSON data into ListView
         * */
        ListAdapter adapter = new SimpleAdapter(this, contactList,
                R.layout.list_item,
                new String[] { TAG_NAME, TAG_EMAIL, TAG_PHONE_MOBILE }, new int[] {
                        R.id.name, R.id.email, R.id.mobile });

        setListAdapter(adapter);

        // selecting single ListView item
        ListView lv = getListView();

        // Launching new screen on Selecting Single ListItem
        lv.setOnItemClickListener(new OnItemClickListener() {

            public void onItemClick(AdapterView<?> parent, View view,
                    int position, long id){
                // getting values from selected ListItem
                String name = ((TextView) view.findViewById(R.id.name)).getText().toString();
                String cost = ((TextView) view.findViewById(R.id.email)).getText().toString();
                String description = ((TextView) view.findViewById(R.id.mobile)).getText().toString();

                // Starting new intent
                Intent in = new Intent(getApplicationContext(), SingleMenuItemActivity.class);
                in.putExtra(TAG_NAME, name);
                in.putExtra(TAG_EMAIL, cost);
                in.putExtra(TAG_PHONE_MOBILE, description);
                startActivity(in);

            }
        });



    }

}

解析器是 :: JSONParser.java

package net.niceandroid.jsonparsing;

import java.io.BufferedReader;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.io.UnsupportedEncodingException;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
import org.apache.http.client.ClientProtocolException;
import org.apache.http.client.methods.HttpPost;
import org.apache.http.impl.client.DefaultHttpClient;
import org.json.JSONException;
import org.json.JSONObject;

import android.util.Log;

public class 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);

            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();
        }

        try {
            BufferedReader reader = new BufferedReader(new InputStreamReader(
                    is, "iso-8859-1"), 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());
        }

        // 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());
        }

        // return JSON String
        return jObj;

    }
}

节点程序是::

   var http = require('http');
    var serv = http.createServer(function(req,res){
        var data = {
        "contacts": [
            {
                    "id": "c200",
                    "name": "Ravi Tamada",
                    "email": "ravi@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c201",
                    "name": "Johnny Depp",
                    "email": "johnny_depp@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c202",
                    "name": "Leonardo Dicaprio",
                    "email": "leonardo_dicaprio@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c203",
                    "name": "John Wayne",
                    "email": "john_wayne@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c204",
                    "name": "Angelina Jolie",
                    "email": "angelina_jolie@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "female",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c205",
                    "name": "Dido",
                    "email": "dido@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "female",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c206",
                    "name": "Adele",
                    "email": "adele@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "female",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c207",
                    "name": "Hugh Jackman",
                    "email": "hugh_jackman@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c208",
                    "name": "Will Smith",
                    "email": "will_smith@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c209",
                    "name": "Clint Eastwood",
                    "email": "clint_eastwood@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c2010",
                    "name": "Barack Obama",
                    "email": "barack_obama@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c2011",
                    "name": "Kate Winslet",
                    "email": "kate_winslet@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "female",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            },
            {
                    "id": "c2012",
                    "name": "Eminem",
                    "email": "eminem@gmail.com",
                    "address": "xx-xx-xxxx,x - street, x - country",
                    "gender" : "male",
                    "phone": {
                        "mobile": "+91 0000000000",
                        "home": "00 000000",
                        "office": "00 000000"
                    }
            }
        ]
    };

    res.end(JSON.stringify(data));
    }).listen(9000);
    console.log("Server running at http://127.0.0.1:9000/");
4

2 回答 2

0

访问 localhost 或 127.0.0.1:9000 时。它不返回任何东西。使用 express 并创建 Rest Services Rest Services Node.js,你可以使用

URL url = new URL("Rest Service link");
    HttpURLConnection conn = (HttpURLConnection) url.openConnection();
    conn.setRequestMethod("GET");
    conn.setRequestProperty("Accept", "application/json");

    if (conn.getResponseCode() != 200) {
        throw new RuntimeException("Failed : HTTP error code : "
                + conn.getResponseCode());
    }

    BufferedReader br = new BufferedReader(new InputStreamReader(
        (conn.getInputStream())));

    String output;
    System.out.println("Output from Server .... \n");
    while ((output = br.readLine()) != null) {
        System.out.println(output);
    }

    conn.disconnect();

这将返回字符串将此字符串传递给您的 json 解析器

于 2013-07-17T11:46:56.267 回答
0

在您的 android 代码中使用 192.168.[0|1].x 或真实 IP 地址而不是 127.0.0.1。

于 2013-07-17T11:13:49.027 回答