2015-05-13 73 views

回答

0

你的問題很不清楚。但我會假設你實際上是指JSONStore。如果您不是指JSONStore,那麼請努力寫出一個明智的問題。

審查JSONStore在設備上的存儲位置以下主題:http://www-01.ibm.com/support/knowledgecenter/SSHS8R_7.0.0/com.ibm.worklight.dev.doc/devref/r_jsonstore_troubleshooting_overview.html

Android emulator: 
$ adb shell 
$ cd /data/data/com.<app-name>/databases/wljsonstore 
$ sqlite3 jsonstore.sqlite 

iOS simulator: 
$ cd ~/Library/Application Support/iPhone Simulator/7.1/Applications/<id>/Documents/wljsonstore 
$ sqlite3 jsonstore.sqlite 

Windows Phone 8 (Silverlight): 
$ cd C:\Data\Users\DefApps\AppData\<id>\Local\wljsonstore 
$ sqlite3 jsonstore.sqlite 

Windows 8 simulator 
$ cd C:\Users\<username>\AppData\Local\Packages\<id>\LocalState\wljsonstore 
$ sqlite3 jsonstore.sqlite 

Note: JavaScript only implementation that runs on a web browser (Firefox, Chrome, Safari, Internet Explorer) does not use an SQLite database. The file is stores in HTML5 LocalStorage. 
+0

非常感謝您的決定性迴應,我瀏覽了我的Android設備,但它的緩存和文件在USB存儲> Android> data> com.app_name中都是空的。雖然我本地存儲數據在我的設備和我的android應用程序引用此數據存儲在本地存儲集合中。 –

+0

親愛的我想知道Android設備存儲中JSONstore的位置 –

相關問題