如何获取“资产”的绝对路径Android 中的目录?

发布于 2024-11-19 20:24:30 字数 187 浏览 5 评论 0原文

我只想要 assets 目录的路径,我想在整个应用程序中将其用作变量。

我知道我们可以使用 AssetManager 引用“assets”目录中的文件,但我现在不想引用文件,我只想要 assets 的路径代码>目录。

有人能帮我解决这个问题吗?

I just want the path of the assets directory which I want to use as a variable throughout my app.

I know we can refer a file in the "assets" directory using AssetManager, but I don't want to refer a file as of now, I just want the path of the assets directory.

Can anybody help me with this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

做个ˇ局外人 2024-11-26 20:24:31

尝试使用

资产文件描述符

Try using

AssetFileDescriptor

我是有多爱你 2024-11-26 20:24:30

我只想要资产目录的路径,我想在整个应用程序中将其用作变量。

设备上没有“资产目录的路径”。

我知道我们可以使用 AssetManager 引用“assets”目录中的文件,但我现在不想引用文件,我只想要 asset 目录的路径。

设备上没有“资产目录的路径”。

有人可以帮我解决这个问题吗?

否,因为设备上没有“资产目录的路径”。请根据需要使用 AssetManagerInputStream 检索到您的资产。

由于 android 对 raw 目录中的文件有文件大小限制,我将把我的文件放在 asset 目录中,并且在运行时,我将根据需要检索它们

“限制”对于资产来说是相同的,AFAIK。规避“限制”的常用方法是为文件提供一个 Android 构建工具不会尝试压缩的扩展名(.mp3 工作 IIRC)。

I just want the path of the assets directory which I want to use as a variable throughout my app.

There is no "path of the assets directory" on the device.

I know we can refer a file in the "assets" directory using AssetManager, but I don't want to refer a file as of now, I just want the path of the assets directory.

There is no "path of the assets directory" on the device.

Can anybody help me with this?

No, because there is no "path of the assets directory" on the device. Please use AssetManager to retrieve an InputStream to your assets as needed.

Since android has a file size restriction on files inside raw directory, I will be placing my files in assets directory, and during runtime, I would be retrieving them as need

The "restriction" is the same for assets, AFAIK. The usual way to circumvent the "restriction" is to give the file an extension that Android's build tools will not try to compress (.mp3 works IIRC).

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