如何获取“资产”的绝对路径Android 中的目录?
我只想要 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
尝试使用
Try using
设备上没有“资产目录的路径”。
设备上没有“资产目录的路径”。
否,因为设备上没有“资产目录的路径”。请根据需要使用
AssetManager
将InputStream
检索到您的资产。“限制”对于资产来说是相同的,AFAIK。规避“限制”的常用方法是为文件提供一个 Android 构建工具不会尝试压缩的扩展名(
.mp3
工作 IIRC)。There is no "path of the assets directory" on the device.
There is no "path of the assets directory" on the device.
No, because there is no "path of the assets directory" on the device. Please use
AssetManager
to retrieve anInputStream
to your assets as needed.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).