如何在java中将图像从drawable读取到File对象?
我在 res 文件夹中有一张图片。我希望它在 File(java.io.File) 对象中可用。
我正在使用:
File f = new File(new URI("drawable/small");
其中small是图像的名称。
I have an image in the res folder. I want it to be available in the File(java.io.File) object.
I am using:
File f = new File(new URI("drawable/small");
where small is the name of the image.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用 openRawResource 将二进制文件从原始资源文件夹复制到设备,或者在本例中为文件
You can use openRawResource to copy a binary across from your raw resource folder to the device or in this case the File
是不是类似的东西?
Is it something like?