Comment stocker un objet JSON dans une base de données SQLite ? Quelle est la bonne méthode ?
Si je peux convertir l'objet JSON en tableau d'octets et utiliser le flux de sortie Fileoutputstream
L'autre idée est de stocker dans une colonne de texte comme une chaîne de caractères.
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();
}
}