如何将数据文件包含在应用程序的 APK 中?
我想在安装 Android 应用程序时创建一些预先创建的文件。
我想在内部存储器 (data/data//files/) 和新创建的 sdcard 目录 (/sdcard//data1/) 中创建文件。
我该怎么做?
I want to create some pre-created files when my Android application is installed.
I would like to create the file in both the internal memory (data/data//files/) and in a newly created sdcard directories (/sdcard//data1/).
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
如果您有大量文件和目录结构,则应使用 /assets。这些没有给出任何 R 常数,可以由您的应用程序扫描
打开资产文件:
列出目录:
If you have a larger number of files and a directory structure you should use /assets. These are not given any R-constants and can be scanned by your application
To open an asset-file:
To list a directory:
您可以将文件保存在
\res\raw
中,并编写代码将此文件存储到所需位置(如果应用启动时该文件不存在)。检查此以访问内部存储器和SD卡
并使用以下命令访问
raw
文件You can save you files in
\res\raw
and write the code to store this files to the desired locations if it does not exist when the app start.Check this to access the internal memory and sdcard
and access the
raw
file using the following值得一提的是,确实大量的数据可以通过 APK 扩展文件。
2016 年,Google Play 目前要求您的 APK 文件不超过 100MB。对于大多数应用程序来说,这已经足够了。
APK 大小限制会不时增加,因此检查当前数字很有意义。
It is worth mentioning that really large amounts of data can be dealt with APK Expansion Files.
In 2016, Google Play currently requires that your APK file be no more than 100MB. For most applications, this is plenty of space.
The APK size limit increases from time to time, so it's meaningful to check the current digit.