直接贴代码:
@SuppressLint("NewApi")
public class UriUtils {
/**
* 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.
*/
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());
}
}
以上这段代码不记得在哪儿看到了,解决部分机型取不到媒体文件路径的情况,确实好用,记录下来怕以后忘记。
分享到:
相关推荐
最近在工作的过程中,遇到不同 Android 版本下 URI 采用不同方式来获取文件路径的问题。 因为需求的原因,要求拍照上传或者从相册中选择图片上传,而且图片是需要经过压缩的,大小不能超过2M。 很快,拍照的这部分...
调用系统的拍照和图库的时候,URI取绝对路径的时候老是报错,原来是4.4之后的安卓系统调整,好辛苦终于找到了解决方案,总结在此。
尤其是在处理用户通过文件选择器选取的图片或文件时,通常会得到一个`Uri`,而这个`Uri`并不直接对应我们熟悉的文件系统路径。本文将详细介绍如何在Android应用中实现这一功能。 #### URI简介 在深入探讨之前,...
在Android 4.4及以上版本,当用户从相机或图库选择图片时,返回的通常是Content URI而不是文件路径。例如,当使用Intent.ACTION_PICK启动相机或图库时,可以获取到Intent的数据字段,里面包含了选中图片的URI。通过...
对于Android 4.4(KitKat)及以上版本,由于安全性和API的变化,获取图库中的图片路径变得更加复杂。本文将详细介绍如何在Android 4.4上获取图库文件路径的方法。 #### 一、背景介绍 Android 4.4(KitKat)引入了...
首先创建一个文件,用于保存拍照图像,然后根据不同系统版本获取Uri,传递给Intent,然后调起相机(可以考虑将outputImage、imageUri设置为全局变量)。 3、处理回调 使用BitmapFactory读取imageUri,得到bitmap,...
根据Android版本,我们使用`ACTION_OPEN_DOCUMENT`(针对Android 4.4及以上版本)或`ACTION_GET_CONTENT`(兼容较低版本)。 ```java private void selectImage() { boolean isKitKatOrLater = Build.VERSION.SDK_...
获取到图片路径后,我们可以使用Android的内置裁剪工具`Intent`来进行裁剪操作: ```java private void startCropActivity(String imagePath) { Intent cropIntent = new Intent("com.android.camera.action.CROP"...
Android 图片文件的路径地址与 Uri 的相互转换方法 Android 开发中常遇到的问题之一是图片文件的路径地址与 Uri 之间的相互转换。这个问题可能会让许多开发者感到困惑和不知所措。下面我们将详细介绍如何将图片文件...
"获得文件管理器视频路径"这个主题涉及到如何在Android应用中开启文件管理器,以便用户选择视频文件,并获取该视频文件的路径。在不同版本的Android系统中,这一过程可能会有所不同。以下是对这些知识点的详细解释:...
在Android 4.4(KitKat)版本中,WebView已经得到了显著的优化和增强,支持更多的HTML5特性,包括文件上传功能。在这个"android4.4WebVeiw文件上传小例子"中,我们将探讨如何在WebView中实现文件选择和上传。 首先...
总结,实现`Android 图片选择带裁剪支持4.4 5.0`的功能,主要涉及到图片选择`Intent`的创建、裁剪界面的设置、裁剪结果的处理以及兼容性问题的解决。`ImageSelector`库可能封装了这些细节,使得开发者能够更方便地...
* 专为Android4.4设计的从Uri获取文件绝对路径 */ public static String getPath(final Context context, final Uri uri) { final boolean isKitKat = Build.VERSION.SDK_INT >= Build.VERSION
Android选择图片或视频进行循环播放是Android开发中的一种常见需求,涉及到文件选择、uri解析、路径获取等多个方面。在本文中,我们将详细介绍如何实现Android选择图片或视频进行循环播放,并对相关知识点进行详细...
在Android开发中,有时我们需要实现一个功能,让用户能够浏览特定目录下的视频或图片。这个过程涉及到文件系统的操作、媒体库的查询以及用户界面的设计。以下将详细解释如何实现这一功能。 首先,我们要理解Android...
理解Android中的文件路径对于开发者来说至关重要,因为这关系到如何正确地存储、读取和操作文件。本篇文章将深入探讨Android文件路径的各个方面。 1. **内部存储** - **/data/data/包名**: 这是Android应用的私有...
Android提供了一个内置的文件选择器,通过`Intent.createChooser()`创建一个意图,然后设置`ACTION_GET_CONTENT`或`ACTION_OPEN_DOCUMENT`的动作,这可以让用户选择一个或多个文件,然后通过回调获取选择的文件URI。...
在Android开发中,有时我们需要从Uri获取到真实的文件路径,并将其转换为File对象,以便进行文件操作,如读取、写入或删除等。这里我们将深入探讨如何在Android中实现这个过程。 首先,Uri(Uniform Resource ...
在Android开发中,有时我们需要实现一个功能,即在用户的设备上搜索特定目录下的视频或图片文件。这个功能在很多应用场景中都非常有用,比如媒体管理器、相册应用或者需要访问用户本地媒体数据的应用。以下是一些...