我可以使用 ADB 查看我的应用程序是否成功写入文本文件?

发布于 2024-11-24 13:15:13 字数 243 浏览 2 评论 0原文

我的应用程序通过将数据写入文本文件来存储数据,但是当我尝试打开并读取文本文件时,程序无法识别我在文本文件中写入了任何内容。

我决定尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

攒眉千度 2024-12-01 13:15:13

这取决于您如何创建文本文件,但您绝对可以四处查看。查看 /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 use adb shell to start a shell on the device/emulator, and cat 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文