標籤:
QuickKV
為Android項目提供的輕量且易用的索引值資料庫。
在Android開發中,複雜的Map和List在持久化和還原序列化的時候比較麻煩和費時。事實上,據QKXue.NET瞭解只需要關注鍵與值就夠了。於是,QuickKV因此而誕生了!
HashMap with JSON
//Put data in a hashmap and save it to the local storage.
//在HashMap中放入資料並儲存至本機存放區器。
Map<Object, Object> map = new HashMap<Object, Object>();
map.put("Key","Value");
JSONObject json = new JSONObject();
Iterator iter = map.entrySet().iterator();
while (iter.hasNext())
{
Map.Entry entry = (Map.Entry) iter.next();
Object key = entry.getKey();
Object value = entry.getValue();
json.put(key.toString(), value.toString());
}
FileOutputStream fos = this.openFileOutput("data.json", Context.MODE_PRIVATE);
fos.write(json.toString().getBytes());
fos.close();
//Load saved data from local storage and parse it, then convert it to a HashMap is more complex.
//從儲存空間中載入已儲存的資料並解析、轉換為HashMap就更加複雜了。
更多Android 索引值資料庫 QuickKV介紹:請點這裡
Android 索引值資料庫 QuickKV