content:// scheme 和 file:// scheme

编程知识 更新时间:2023-04-05 07:13:00

path 转 Uri (content://)

 /**
     * 根据file path 获取content://
     * @param context
     * @param filePath
     * @return content://
     */
    public static Uri getImageContentUri(Context context, String filePath) {
        Cursor cursor = context.getContentResolver().query(
                MediaStore.Images.Media.EXTERNAL_CONTENT_URI,
                new String[] { MediaStore.Images.Media._ID},
                MediaStore.Images.Media.DATA + "=? ",
                new String[] { filePath }, null);
        if (cursor != null && cursor.moveToFirst()) {
            int id = cursor.getInt(cursor
                    .getColumnIndex(MediaStore.MediaColumns._ID));
            Uri baseUri = Uri.parse("content://media/external/file");
            return Uri.withAppendedPath(baseUri, "" + id);
        } else {
            File file = new File(filePath);
            if (file.exists()) {
                ContentValues values = new ContentValues();
                values.put(MediaStore.Images.Media.DATA, filePath);
                return context.getContentResolver().insert(
                        MediaStore.Images.Media.EXTERNAL_CONTENT_URI, values);
            } else {
                return null;
            }
        }
    }

更多推荐

content:// scheme 和 file:// scheme

本文发布于:2023-04-05 07:12:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/12f1d02b7a7b678ad7eb19c6f192cedb.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:content   scheme   file

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!

  • 45476文章数
  • 14阅读数
  • 0评论数