SQLite
 sql >> Teknologi Basis Data >  >> RDS >> SQLite

Cara terbaik untuk menyimpan json

Simpan json di direktori cache sebagai file....

Simpan:

// Instantiate a JSON object from the request response
JSONObject jsonObject = new JSONObject(json);
// Save the JSONOvject
ObjectOutput out = new ObjectOutputStream(new FileOutputStream(new File(getCacheDir(),"")+"cacheFile.srl"));
out.writeObject( jsonObject );
out.close();

Ambil:

// Load in an object
ObjectInputStream in = new ObjectInputStream(new FileInputStream(new File(new File(getCacheDir(),"")+"cacheFile.srl")));
JSONObject jsonObject = (JSONObject) in.readObject();
in.close();


  1. Database
  2.   
  3. Mysql
  4.   
  5. Oracle
  6.   
  7. Sqlserver
  8.   
  9. PostgreSQL
  10.   
  11. Access
  12.   
  13. SQLite
  14.   
  15. MariaDB
  1. Cara menggunakan regexp di sqlite

  2. Cara Membuat Kolom Terhitung di SQLite

  3. Daftar semua Indeks dalam Database SQLite

  4. android.database.sqlite.SQLiteException:near s:syntax error (kode 1):,

  5. Bagaimana cara melakukan sinkronisasi dengan database lokal dan parse?