将 file:// 方案转换为 content:// 方案
我在使用 Droid X 的文件应用程序和 Astro 文件管理器选择图像文件时遇到问题。这两个应用程序返回使用方案“file://”的选定图像,而 Gallery 返回使用方案“content://”的图像。如何将第一个模式转换为第二个模式。或者如何使用第二种格式解码图像?
I am running to the problem with using Droid X's Files app and Astro file manager to select an image file. This two apps return the selected image with the scheme "file://" while Gallery returns the image with the scheme "content://". How do I convert the first schema to the second. Or how do I decode the image with the second format?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可能想将 content:// 转换为 file://
对于图库图像,请尝试如下操作:
You probably want to convert content:// to file://
For gallery images, try something like this:
这里的问题是,对于所有文件,我们不能有一个内容 Uri (content://)。因为内容 uri 适用于那些属于
MediaStore
一部分的文件。例如:图像、音频和信息视频。但是,对于支持的文件,我们可以找到其绝对路径。对于图像如下 -
通用方法如下。
Here, the problem is that, for all files we can't have a content Uri (content://). Because content uri is for those files which are part of
MediaStore
. Eg: images, audio & video.However, for supported files, we can find its absolute path. Like for images as follows-
The generic method is as follows.
使用ContentResolver.openInputStream()或相关方法来访问字节流。通常您不应该担心它是 file: 还是 content: URI。
http://developer.android.com/reference /android/content/ContentResolver.html#openInputStream(android.net.Uri)
Use ContentResolver.openInputStream() or related methods to access the byte stream. You shouldn't generally be worrying about whether it is a file: or content: URI.
http://developer.android.com/reference/android/content/ContentResolver.html#openInputStream(android.net.Uri)