【Android】—— DDMS開發工具獲取ROOT許可權檢視手機檔案、匯出資料庫檔案等
阿新 • • 發佈:2019-02-17
在這之前首先手機要開啟ROOT許可權,可以藉助安卓刷機精靈等一鍵ROOT軟體
其次像魅族、小米等手機拿到ROOT以後不能執行su命令,所以無法給手機中的檔案授權,需要下載一個SuperSU許可權管理器
有了他們我們就可以開始下面的步驟了:
1.window->show view->other
2. 輸入 file 查詢
3. 出來了吧
4. 可惜啊,data資料夾死活打不開啊, 看這個辦法
當然在這之前需要把SDK配置到環境變數裡面去,這裡不再贅述,大家可以去搜索如何配置
On rooted device you can do this:
- 開啟cmd命令
- 輸入 '
adb shell
' su
- Press 'Allow' on device (可選)
chmod 777 /data /data/data /data/data/com.application.pacakage /data/data/com.application.pacakage/* 也可以遞迴全部生效 chmod -R 777 /data
- Go to the DDMS view in Eclipse
After this you should be able to browse the files on the device.
If it returns permission denied
on su
Go to Settings
Developer Options
> Root access
> Apps and ADB
==========================================================================================
轉自:http://blog.csdn.net/shimiso/article/details/42713355/