将HashMap数据保存到SQLite中

时间:2014-08-21 16:01:07

标签: java android json sqlite hashmap

我试图将Json的数据保存到SQLite。现在,我将Json的数据保存到HashMap

我已经搜索过,并且有人说使用了ContentValues。但我仍然不知道如何使用它。

我尝试查看这个问题save data to SQLite from json object using Hashmap in Android,但它并没有多大帮助。

我可以使用任何选项将数据从HashMap保存到SQLite吗?

这是我的代码。

MainHellobali.java

// Hashmap for ListView
ArrayList<HashMap<String, String>> all_itemList; 

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

    all_itemList = new ArrayList<HashMap<String, String>>();
    // Calling async task to get json
    new getAllItem().execute();
}


private class getAllItem extends AsyncTask<Void, Void, Void> {


    @Override
    protected Void doInBackground(Void... arg0) {
        // Creating service handler class instance
        ServiceHandler sh = new ServiceHandler();

        // Making a request to url and getting response
        String jsonStr = sh.makeServiceCall(url, ServiceHandler.GET);

        Log.d("Response: ", "> " + jsonStr);

        if (jsonStr != null) {
            try {

                all_item = new JSONArray(jsonStr);


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

                        String item_id = c.getString(TAG_ITEM_ID);
                        String category_name = c.getString(TAG_CATEGORY_NAME);
                        String item_name = c.getString(TAG_ITEM_NAME);

                        // tmp hashmap for single contact
                        HashMap<String, String> allItem = new HashMap<String, String>();

                        // adding each child node to HashMap key => value
                        allItem.put(TAG_ITEM_ID, item_id);
                        allItem.put(TAG_CATEGORY_NAME, category_name);
                        allItem.put(TAG_ITEM_NAME, item_name);  

                        // adding contact to contact list
                        all_itemList.add(allItem);

                }
            } catch (JSONException e) {
                e.printStackTrace();
            }
        } else {
            Log.e("ServiceHandler", "Couldn't get any data from the url");
        }

        return null;
    }
}

我也有DatabasehHandler.javaAllItem.java。 如果必要,我可以把它放在这里。

之前谢谢

**添加编辑代码**

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

                        String item_id = c.getString(TAG_ITEM_ID);
                        String category_name = c.getString(TAG_CATEGORY_NAME);
                        String item_name = c.getString(TAG_ITEM_NAME);

                        DatabaseHandler databaseHandler = new DatabaseHandler(this); //error here "The Constructor DatabaseHandler(MainHellobali.getAllItem) is undefined

}

2 个答案:

答案 0 :(得分:2)

正如@birdy所提到的,您只需将JSON数据作为String存储在数据库中。 在我的情况下,我已经完成了你想要实现的相同的事情,在我的情况下,我刚刚创建了一个抽象的数据源,将为我将在我的数据库中设置的任何JSON对象进行扩展。 但基本上你只需要一个方法将JSONObject转换为ContentValues对象。

public ContentValues jsonToContentValues(JSONObject json) {
        ContentValues values = new ContentValues();
        values.put("MY_COLUMN", json.optString("MY_JSON_VALUE"));
        return values;
}

将内容值对象全部设置后,只需在数据库中插入值即可。

return database.insert("MY_TABLE_NAME", null, contentValues);

答案 1 :(得分:1)

如果您需要存储JSON数据 - 只需将其存储为文本即可。从数据库中取回后,您可以再次将其解析为地图。