Android JSON Parse parseJSON(String s)

Here you can find the source of parseJSON(String s)

Description

parse JSON

Declaration

public static JSONObject parseJSON(String s) 

Method Source Code

//package com.java2s;

import org.json.JSONObject;

public class Main {
    public static JSONObject parseJSON(String s) {
        JSONObject jsonobject;/*from w w w .  j a v a  2  s .  c  om*/
        try {
            jsonobject = new JSONObject(s);
            return jsonobject;
        } catch (Exception e) {
            e.printStackTrace();
            jsonobject = new JSONObject();
            // TODO: handle exception
        }
        return jsonobject;
    }
}

Related

  1. parseJson(String json, String key)
  2. parseJson(JSONObject jsonObject, String key)
  3. parseJSONToHash(String s)
  4. parseJSON(String jsonString)