将Uri转换为字符串和字符串转换为Uri

75

我正在开发一个允许从SD卡中选择图片、将其保存到数据库并将此值设置为ImageView的应用程序。我需要知道将URI转换为字符串和将字符串转换为URI的方法。目前,我使用了Uri的getEncodedPath()方法,但是,例如,这段代码无法工作:

ImageView iv=(ImageView)findViewById(R.id.imageView1);
Uri uri=Uri.parse("/external/images/media/470939");
Log.e("uri1", uri.toString());
iv.setImageURI(uri);
因此,我不知道如何将Uri保存到数据库中并从保存的值创建新的Uri。请帮我解决这个问题。

“‘它不起作用’是什么意思?”你收到了什么错误消息? - Laurence Moroney
我没有ImageView的图像。 - user2218845
5个回答

132
使用 toString()Uri 转换为 String,使用 Uri.parse()String 转换为 Uri

这段代码无效

那不是一个有效的 Uri 字符串表示。一个 Uri 必须有一个 scheme,而 "/external/images/media/470939" 没有 scheme。

请尝试使用Uri.fromFile()代替。 有时Uri.parse会出现问题。 - AnkitRox
我会按照你的答案去做,但是它给了我一个返回错误,像这样 **setImageUrl(java.lang.String, ImageLoader) in NetworkImageView 无法应用于 (android.net.Uri)**。 - Ali
@MohammadAli:这个答案与NetworkImageView无关。您需要阅读有关该库的文档,以了解如何最好地使用它。 - CommonsWare
1
@androiddeveloper:从技术上讲,URL是可以在URI中表示的一部分。但据我所知,在Android中,Uri只处理URL相关的内容,因此在Uri上调用toString()方法应该会返回一个有效的URL。 - CommonsWare
我明白了。toString() 方法在 Uri 类中还有其他可行的情况吗?它是否像这样很有用? - android developer
显示剩余6条评论

26

尝试使用此方法将字符串转换为URI

String mystring="Hello"
Uri myUri = Uri.parse(mystring);

将Uri转换为字符串

Uri uri;
String uri_to_string;
uri_to_string= uri.toString();

1
这将从MediaProvider、DownloadsProvider和ExternalStorageProvider获取文件路径,同时回退到您提到的非官方ContentProvider方法。
   /**
 * Get a file path from a Uri. This will get the the path for Storage Access
 * Framework Documents, as well as the _data field for the MediaStore and
 * other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @author paulburke
 */
public static String getPath(final Context context, final Uri uri) {

    final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION_CODES.KITKAT;

    // DocumentProvider
    if (isKitKat && DocumentsContract.isDocumentUri(context, uri)) {
        // ExternalStorageProvider
        if (isExternalStorageDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            if ("primary".equalsIgnoreCase(type)) {
                return Environment.getExternalStorageDirectory() + "/" + split[1];
            }

            // TODO handle non-primary volumes
        }
        // DownloadsProvider
        else if (isDownloadsDocument(uri)) {

            final String id = DocumentsContract.getDocumentId(uri);
            final Uri contentUri = ContentUris.withAppendedId(
                    Uri.parse("content://downloads/public_downloads"), Long.valueOf(id));

            return getDataColumn(context, contentUri, null, null);
        }
        // MediaProvider
        else if (isMediaDocument(uri)) {
            final String docId = DocumentsContract.getDocumentId(uri);
            final String[] split = docId.split(":");
            final String type = split[0];

            Uri contentUri = null;
            if ("image".equals(type)) {
                contentUri = MediaStore.Images.Media.EXTERNAL_CONTENT_URI;
            } else if ("video".equals(type)) {
                contentUri = MediaStore.Video.Media.EXTERNAL_CONTENT_URI;
            } else if ("audio".equals(type)) {
                contentUri = MediaStore.Audio.Media.EXTERNAL_CONTENT_URI;
            }

            final String selection = "_id=?";
            final String[] selectionArgs = new String[] {
                    split[1]
            };

            return getDataColumn(context, contentUri, selection, selectionArgs);
        }
    }
    // MediaStore (and general)
    else if ("content".equalsIgnoreCase(uri.getScheme())) {
        return getDataColumn(context, uri, null, null);
    }
    // File
    else if ("file".equalsIgnoreCase(uri.getScheme())) {
        return uri.getPath();
    }

    return null;
}

/**
 * Get the value of the data column for this Uri. This is useful for
 * MediaStore Uris, and other file-based ContentProviders.
 *
 * @param context The context.
 * @param uri The Uri to query.
 * @param selection (Optional) Filter used in the query.
 * @param selectionArgs (Optional) Selection arguments used in the query.
 * @return The value of the _data column, which is typically a file path.
 */
public static String getDataColumn(Context context, Uri uri, String selection,
        String[] selectionArgs) {

    Cursor cursor = null;
    final String column = "_data";
    final String[] projection = {
            column
    };

    try {
        cursor = context.getContentResolver().query(uri, projection, selection, selectionArgs,
                null);
        if (cursor != null && cursor.moveToFirst()) {
            final int column_index = cursor.getColumnIndexOrThrow(column);
            return cursor.getString(column_index);
        }
    } finally {
        if (cursor != null)
            cursor.close();
    }
    return null;
}


/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is ExternalStorageProvider.
 */
public static boolean isExternalStorageDocument(Uri uri) {
    return "com.android.externalstorage.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is DownloadsProvider.
 */
public static boolean isDownloadsDocument(Uri uri) {
    return "com.android.providers.downloads.documents".equals(uri.getAuthority());
}

/**
 * @param uri The Uri to check.
 * @return Whether the Uri authority is MediaProvider.
 */
public static boolean isMediaDocument(Uri uri) {
    return "com.android.providers.media.documents".equals(uri.getAuthority());
}

谢谢,它对所有内容都有效,除了通过WhatsApp共享图像,它会出现错误“java.lang.IllegalArgumentException:列'_data'不存在”。 - nimi0112

1

我不确定您是否已经解决了这个问题。 关于"CommonsWare"的评论的跟进。

这不是Uri的有效字符串表示形式。 Uri有一个方案,而"/external/images/media/470939"没有方案。

更改

Uri uri=Uri.parse("/external/images/media/470939");

Uri uri=Uri.parse("content://external/images/media/470939");

在我的情况下
Uri uri = Uri.parse("content://media/external/images/media/6562");

-2

你可以使用Drawable而不是Uri。

   ImageView iv=(ImageView)findViewById(R.id.imageView1);
   String pathName = "/external/images/media/470939"; 
   Drawable image = Drawable.createFromPath(pathName);
   iv.setImageDrawable(image);

这会起作用。

网页内容由stack overflow 提供, 点击上面的
可以查看英文原文,
原文链接