我可以使用 ADB 查看我的应用程序是否成功写入文本文件?
我的应用程序通过将数据写入文本文件来存储数据,但是当我尝试打开并读取文本文件时,程序无法识别我在文本文件中写入了任何内容。
我决定尝试使用 adb 来查看是否可以找到 txt 文件,但是当我转到 data.app 并尝试打开我的文件 - com.benbaltes.Android-Fields2.apk 时,它说可以' t cd 到该应用程序。
无论如何,我可以检查和浏览我的应用程序中的文件吗?我已获得 root 权限并拥有 SU 访问权限
My application stores data by writing it to a text file, however when I try to open and read the text file the program doesn't recognize that I've written anything in the text file.
I've decided to try to use the adb to see if I can find the txt file, but when I go to data.app and I try to open my file - com.benbaltes.Android-Fields2.apk it says it can't cd to that app.
Is there anyway I can check and poke around the files in my app? I am rooted and have SU access
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这取决于您如何创建文本文件,但您绝对可以四处查看。查看
/data/app-private
或/data/data/your_package_name/
内部。您可以使用adb shell
在设备/模拟器上启动 shell,并且cat
用于将文本文件(实际上是任何文件)打印到控制台。apk 文件不是写入任何数据的地方——它是应用程序的分发文件。
It depends on how you create the text file, but you can definitely poke around. Take a look inside
/data/app-private
or/data/data/your_package_name/
. You can useadb shell
to start a shell on the device/emulator, andcat
works to print a text file (any file, actually) to the console.The apk file is not where any data is written -- that's the distribution file for your app.