gpt4 book ai didi

android - 转换文件 ://scheme to content://scheme

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:41:49 25 4
gpt4 key购买 nike

我在使用 Droid X 的文件应用程序和 Astro 文件管理器选择图像文件时遇到了问题。这两个应用程序返回带有“file://”方案的所选图像,而 Gallery 返回带有“content://”方案的图像。如何将第一个模式转换为第二个。或者如何用第二种格式解码图像?

最佳答案

您可能想将 content://转换为 file://

对于画廊图片,尝试这样的事情:

Uri myFileUri;
Cursor cursor = context.getContentResolver().query(uri,new String[]{android.provider.MediaStore.Images.ImageColumns.DATA}, null, null, null);
if(cursor.moveToFirst())
{
myFileUri = Uri.parse(cursor.getString(0)).getPath();
}
cursor.close

关于android - 转换文件 ://scheme to content://scheme,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6301215/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com