How to access data/data folder in Android device?

后端 未结 18 2115
南方客
南方客 2020-11-22 15:36

I am developing an app and I know my database *.db will appear in data/data/com.****.***

I can access this file from AVD in Eclipse with he

18条回答
  •  小蘑菇
    小蘑菇 (楼主)
    2020-11-22 16:29

    You could also try fetching the db using root explorer app. And if that does not work then you can try this:

    1. Open cmd
    2. Change your directory and go into 'Platform tools'
    3. Type 'adb shell'
    4. su
    5. Press 'Allow' on device
    6. chmod 777 /data /data/data /data/data/com.application.package /data/data/com.application.package/*
    7. Open DDMS view in Eclipse and from there open 'FileExplorer' to get your desired file

    After this you should be able to browse the files on the rooted device.

提交回复
热议问题