从 Android 设备复制文件?
如何将文件从某些 Android 应用程序的资产文件夹复制到设备外的某个位置?
或者,如何移动或复制应用程序,以便将其安装在 SD 卡上,而不是主 ROM 上?
彼得
How can I copy a file from some Android app's assets folder, to somewhere off the device?
Alternatively, how can I move or copy an app so that it is installed on the sd card, not the main rom?
Peter
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
最简单的方法是了解 adb 推送和拉取命令: adb
Easiest way is to learn about the adb push and pull commands: adb
我不认为有任何直接的方法可以从已安装的应用程序的资产文件夹中复制文件,而无需对设备进行 root 或应用程序本身的合作。
I do not believe there is any straightforward way to copy a file out of an installed app's asset folder without either rooting the device, or the cooperation of the app itself.
此外,还可以使用 DDMS 复制文件
As well, files can be copied using DDMS