有時候需要將手機的資料庫匯出來到電腦上檢視比較方便,廢話少說,直接上步驟:
1.首先需要將手機root,獲取root許可權才能檢視資料庫檔案
第二種方法:連線上studio,然後選擇tool -> android -> android device monitor. ,然後在 /storage/emulated/0/android/data/com.example.test/cach
就可以找到了。
第三中方法:第二種方法很簡單,但有特殊情況,比如我的手機就出現了這種情況,即時root情況下還是看不到,此時,就需要借助逼格很高的黑視窗終端通過命令列來匯出了。
(1)開啟黑視窗,或者直接在studio下邊,輸入 adb shell
(2) cd /data/data
(3) cd com.gcg.android.grirms (你的專案包名)
(4) cd databases
(5) ls 理論上就能看到你的資料庫檔案了,如果顯示opendir failed, permission denied 的話,說明你許可權不夠,然後你執行su,重新執行在命令,就可以了
(6)cp ./***.db /sdcard ( cp 檔名稱 /sdcard ) 必須先複製到外部sd上,才能匯出
(7) adb pull /sdcard/檔名稱 d:/aaa
好了,大功告成,此時,你應該可以看到你的檔案了。
如何重啟Android手機
下面這段 執行的原理就是傳送重啟的廣播給系統,系統接受廣播之後重啟。intent intent newintent intent.action reboot intent.putextra nowait 1 intent.putextra interval 1 intent.putextra win...
Android從手機中拷貝出檔案
在使用 android device monitor 時要檢視data目錄下某個檔案,data目錄無法開啟?首先,使用的手機需是root過的,然後在終端輸入 mac mini aaa adb shell shell aries su root aries chmod 777 data這樣就給 dat...
將寫好的軟體安裝到Android手機
aapt是android asset packaging tool的首字母縮寫,這個工具包含在sdk的tools 目錄下。檢視 建立 更新與zip相容的歸檔檔案 zip jar apk 它也能將資源檔案編譯成二進位製包。安裝軟體 adb 位於 android安裝目錄的platform tools目錄...