如何在SQLite数据库中存储JSON对象?正确的方法是什么?
一个地方是Blob类型列。如果我可以将JSON对象转换为字节数组并使用Fileoutputstream
另一个想法是将文本列存储为字符串
import org.json.JSONObject; JSONObject jsonObject; public void createJSONObject(Fields fields) { jsonObject = new JSONObject(); try { jsonObject.put("storedValue1", fields.storedValue1); jsonObject.put("storedValue2", fields.storedValue2); jsonObject.put("storedValue3", fields.storedValue3); jsonObject.put("storedValue4", fields.storedValue4); jsonObject.put("storedValue5", fields.storedValue5); jsonObject.put("storedValue6", fields.storedValue6); } catch (JSONException e) { e.printStackTrace(); } }
将JSONObject转换为String并另存为TEXT / VARCHAR。 在检索同一列时,将String转换为JSONObject。
例如
写入数据库
String stringToBeInserted = jsonObject.toString(); //and insert this string into DB
从数据库读取
String json = Read_column_value_logic_here JSONObject jsonObject = new JSONObject(json);