怎么将JSON文件传入sqlite数据库中呢?

怎么将JSON文件传入sqlite数据库中呢?,第1张

将json对象的键值对。

转化为 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)


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/sjk/9914101.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-05-03
下一篇 2023-05-03

发表评论

登录后才能评论

评论列表(0条)

保存