转化为 ContentValues 对象中的键值对(键为表中的字段名)。
然后插入数据库就可以了。
dbManager.insert(TABLENAME, null, values)
将json对象的 键值对,转化为 ContentValues 对象中的键值对(键 为表中的字段名),然后插入数据库就可以了。dbManager.insert(TABLENAME, null, values)
Convert JSONObject into String and save as TEXT/ VARCHAR. While retrieving the same column convert the String into JSONObject.For example
Write into DB
String stringToBeInserted = jsonObject.toString()
//and insert this string into DB
Read from DB
String json = Read_column_value_logic_here
JSONObject jsonObject = new JSONObject(json)
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)