开发者

Best technique to map JSON data into ContentValues

开发者 https://www.devze.com 2023-04-10 12:09 出处:网络
I\'m developing an Android app which will initiate a number of API calls that return JSON data structures and then store the results in a content provider. Different API calls return different JSON da

I'm developing an Android app which will initiate a number of API calls that return JSON data structures and then store the results in a content provider. Different API calls return different JSON data structures and map to a corresponding table schema in the content provider. I'm looking for a simple and Java-esque method to map from the properties in a JSONObject to a flat ContentValues object. I started to use a simple HashMap and iterating over it's entrySet mapping key strings in the JSONObject to value strings for the ContentValues object, but I'd like to account for the fact that some JSON properties are integers or booleans. Also, in some cases I'd like a more complex mapping such as a JSONArray into a comma separated string. In C, I'd probably just do this with a struct array name, value, type, and an optional callback to handle more complex mappings.

UPDATE: Due to the hierarchal nature of the JSON Data Structure and due to the fact that it can actually have sub-tables at certain depths I've taken the following approach.

private static interface MapJSON {
    public void mapData(JSONObject object, ContentValues values)
        throws JSONException;
}

private static abstract class AbstractMapJSON implements MapJSON {
    protected final String mJSONName;
    protected final String mContentName;

    public AbstractMapJSON(String jsonName, String contentName) {
        mJSONName = jsonName;
        mContentName = contentName;
    }

    public abstract void mapData(JSONObject object, ContentValues values)
        throws JSONException;
}

/* This is the basic template for each of the basic types */
private static class BooleanMapJSON extends AbstractMapJSON {
    public BooleanMapJSON(String jsonName, String contentName) {
        super(jsonName, contentName);
    }

    public void mapData(JSONObject object, ContentValues values)
        throws JSONException {
        values.put(mContentName, object.getBoolean(mJSONName));
    }
}

/* This class takes a nested JSON Object and flattens it into the same table */
private static class ObjectMapJSON implements MapJSON { 
    protected final String mJSONName;
    开发者_开发问答protected final MapJSON[] mMap;

    public ObjectMapJSON(String jsonName, MapJSON[] map) {
        mJSONName = jsonName;
        mMap = map;
    }

    public void mapData(JSONObject object, ContentValues values)
        throws JSONException {
        JSONObject subObject = object.getJSONObject(mJSONName);
        for(MapJSON mapItem: mMap) {
            mapItem.mapData(subObject, values);
        }
    }
}

With that defined, I've can create mappings like this:

private static final MapJSON[] mainSiteMap = new MapJSON[] {
    new StringMapJSON("name", StackPad.Sites.NAME),
    new LongMapJSON("creation_date", StackPad.Sites.CREATION_DATE),
    new StringMapJSON("description", StackPad.Sites.DESCRIPTION),
};

private static final MapJSON sitesMap = new ObjectMapJSON("main_site", mainSiteMap);

But it still seems like it needs a little work to mesh well.


Maybe you can build a class and use it in the hashmap , I dont know whats your types but for example

class Foo{
            String name;
            String value;
            String type;
            int opt;
          }

.....

HashMap hm = new HashMap();

Foo foo = new Foo("123","123","type",1);
hm.put("100", foo);

.....


you can try using google's gson, create a structure for your object then map them to the object.. you can specify what datatype and support primitive types as well..

0

精彩评论

暂无评论...
验证码 换一张
取 消