如何解析android中的Json响应?

时间:2013-02-11 13:04:32

标签: android json parsing

我在服务器的GET请求结果中收到此响应

{"LL": { "control": "dev/sys/getkey", "value": "4545453030304138303046392035343733373432363020323031332D30322D31312031383A30313A3135", "Code": "200"}}

我只想从上面的json响应中提取"value"的值。

我正在使用此代码来获取此响应

findViewById(R.id.button1).setOnClickListener(new OnClickListener() {

        @Override
        public void onClick(View v) {

            HttpResponse response = null;
            try {
                HttpClient client = new DefaultHttpClient();
                HttpGet request = new HttpGet();
                request.setURI(new URI(
                        "http://192.168.14.247/jdev/sys/getkey"));
                response = client.execute(request);
            } catch (URISyntaxException e) {
                e.printStackTrace();
            } catch (ClientProtocolException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }

            String responseText = null;
            try {
                responseText = EntityUtils.toString(response.getEntity());
            } catch (ParseException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                Log.i("Parse Exception", e + "");

            } catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
                Log.i("IO Exception 2", e + "");

            }

            Log.i("responseText", responseText);

            Toast.makeText(MainActivity.this, responseText + "",
                    Toast.LENGTH_SHORT).show();

        }

    });

我的问题是,我如何解析它并获得仅"value"标记的值。 感谢

6 个答案:

答案 0 :(得分:20)

你可以解析当前的json String以从中获取value

// Convert String to json object
JSONObject json = new JSONObject(responseText);

// get LL json object
JSONObject json_LL = json.getJSONObject("LL");

// get value from LL Json Object
String str_value=json_LL.getString("value"); //<< get value here

答案 1 :(得分:2)

试试这个:

JSONObject json= json1.getJSONObject("LL");    

String value= json.getString("value");

答案 2 :(得分:2)

试试这个

JSONObject json = (JSONObject) JSONSerializer.toJSON(responseText);   
String value = json.getJSONObject("LL").getString("value");

答案 3 :(得分:0)

试试这个,

JSONObject ResponseObject = new JSONObject(Response);
String str = ResponseObject.getJSONObject("LL").getString(value);

答案 4 :(得分:0)

您可以解析您的回复并获得价值尝试:

try {
  JSONObject jsonObject = new JSONObject(response);// Convert response string in to json object.

  JSONObject jsonLL = jsonObject.getJSONObject("LL");// Get LL json object from jsonObject.

  String strValue = jsonLL.getString("value");// Get value from jsonLL Object.

   } catch (Exception e) {
    e.printStackTrace();
   }

答案 5 :(得分:0)

简单高效解决方案:使用Googlle的 Gson库

  • 将此内容放入 build.gradle 文件中:implementation 'com.google.code.gson:gson:2.6.2'
  • 现在像这样在 2行中将JSON字符串转换为方便的数据结构,例如HashMap。

Type type = new TypeToken<Map<String, String>>(){}.getType();
Map<String, String> myMap = gson.fromJson(JsonString , type);

或您可以在下面的类中使用此方法:

要将您的 JSON字符串转换为哈希图,请使用:

HashMap<String, Object> hashMap = new HashMap<>(Utility.jsonToMap(response)) ;

使用此类:)(甚至处理列表,嵌套列表和json)

public class Utility {

    public static Map<String, Object> jsonToMap(Object json) throws JSONException {

        if(json instanceof JSONObject)
            return _jsonToMap_((JSONObject)json) ;

        else if (json instanceof String)
        {
            JSONObject jsonObject = new JSONObject((String)json) ;
            return _jsonToMap_(jsonObject) ;
        }
        return null ;
    }


   private static Map<String, Object> _jsonToMap_(JSONObject json) throws JSONException {
        Map<String, Object> retMap = new HashMap<String, Object>();

        if(json != JSONObject.NULL) {
            retMap = toMap(json);
        }
        return retMap;
    }


    private static Map<String, Object> toMap(JSONObject object) throws JSONException {
        Map<String, Object> map = new HashMap<String, Object>();

        Iterator<String> keysItr = object.keys();
        while(keysItr.hasNext()) {
            String key = keysItr.next();
            Object value = object.get(key);

            if(value instanceof JSONArray) {
                value = toList((JSONArray) value);
            }

            else if(value instanceof JSONObject) {
                value = toMap((JSONObject) value);
            }
            map.put(key, value);
        }
        return map;
    }


    public static List<Object> toList(JSONArray array) throws JSONException {
        List<Object> list = new ArrayList<Object>();
        for(int i = 0; i < array.length(); i++) {
            Object value = array.get(i);
            if(value instanceof JSONArray) {
                value = toList((JSONArray) value);
            }

            else if(value instanceof JSONObject) {
                value = toMap((JSONObject) value);
            }
            list.add(value);
        }
        return list;
    }
}

稍后谢谢:)

相关问题