如何将数据文件包含在应用程序的 APK 中?

发布于 2024-10-05 06:36:05 字数 131 浏览 3 评论 0原文

我想在安装 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 技术交流群。

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

发布评论

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

评论(3

甜嗑 2024-10-12 06:36:05

如果您有大量文件和目录结构,则应使用 /assets。这些没有给出任何 R 常数,可以由您的应用程序扫描

打开资产文件:

InputStream is = getAssets().open("path/file.ext");

列出目录:

String[] files = getAssets().list("");

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:

InputStream is = getAssets().open("path/file.ext");

To list a directory:

String[] files = getAssets().list("");
陌伤ぢ 2024-10-12 06:36:05

您可以将文件保存在 \res\raw 中,并编写代码将此文件存储到所需位置(如果应用启动时该文件不存在)。
检查以访问内部存储器和SD卡
并使用以下命令访问 raw 文件

InputStream databaseInputStream = getResources().openRawResource(R.raw.yourfile);

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

InputStream databaseInputStream = getResources().openRawResource(R.raw.yourfile);
無處可尋 2024-10-12 06:36:05

值得一提的是,确实大量的数据可以通过 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.

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