我正在尝试检索由apk生成的txt文件。
我已经使用adb,unziped / used apktool从android中提取应用程序以获取源文件,对其进行分析并发现以下内容:
this.context.openFileOutput("filename.txt", 0);
localFileOutputStream.write(paramString);
localFileOutputStream.close();
据我所知,它在apk的本地目录中保存了这个文件 filename.txt ,但在解压缩后搜索它没有任何内容。
这里的主要问题是:
我在正确的地方寻找它吗? 如果是这样,我怎么能得到这个文件?