使用 ACTION_GET_CONTENT 选择文件路径时获取文件路径的正确方法
Posted
技术标签:
【中文标题】使用 ACTION_GET_CONTENT 选择文件路径时获取文件路径的正确方法【英文标题】:Proper way to get file path when it's picked using ACTION_GET_CONTENT 【发布时间】:2016-04-23 20:57:07 【问题描述】:我在我的应用中实现了一个文件选择器,如下所示:
Intent intent = new Intent();
intent.setType("*/*");
intent.setAction(Intent.ACTION_GET_CONTENT);
startActivityForResult(Intent.createChooser(intent, "Title"), FILE_PICK);
这是一个已知问题,您无法通过这种方式轻松获取实际文件位置,因为 Intent 会返回一些您无法真正用于创建 File 对象的奇怪 Uri。
我正在使用这种方法来获取实际的文件路径:
/**
* 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 the remote address
if (isGooglePhotosUri(uri))
return uri.getLastPathSegment();
return getDataColumn(context, uri, null, null);
// File
else if ("file".equalsIgnoreCase(uri.getScheme()))
return uri.getPath();
return null;
这对某些文件有效,而对某些文件无效。现在我注意到当我从“下载”文件夹中选择一个文件时它不起作用。它会跳过上面的所有 if 语句并返回 null。
正确的方法是什么,才能更可靠地获取实际选择的文件路径?
【问题讨论】:
“我在我的应用程序中实现了这样的文件选择器”——这不是“文件选择器”。 “正确的方法是什么……”——“正确的方法”是认识到不必有文件,因为不必有文件。ACTION_GET_CONTENT
不选择文件。它选择内容。 Uri
是某些内容的不透明句柄,就像 Web 浏览器中的 URL 是某些内容的不透明句柄一样。您使用ContentResolver
上的方法访问由Uri
标识的内容,就像您使用HttpUrlConnection
上的方法访问由URL 标识的内容一样。
这是有道理的。非常感谢您的解释。您能否让我知道实现这一点的正确方法是什么?我需要一种能够在 android 设备上选择任何文件的方法,以便我可以将其上传到我的后端。这似乎没有按预期工作,因为它可以识别一些文件,而另一些则不能。
【参考方案1】:
我在我的应用中实现了这样的文件选择器
这不是“文件选择器”。它是一个内容选择器。
我需要一种方法来选择 Android 设备上的任何文件,以便我可以将其上传到我的后端。
嗯,嗯,这在很大程度上取决于你在这句话中的字面意思。
ACTION_GET_CONTENT
一般不是问题。但是,您获得的不一定是文件。但是,您仍然可以上传它们,假设您用于上传的任何内容都允许您从InputStream
上传。如果是这样,请在 ContentResolver
上使用 openInputStream()
,传入 Uri
,以获取要使用的 InputStream
。
如果您真的需要它是实际文件,您可以直接在您的应用中实现文件选择器 UI。 There are libraries for this。但是,您将无法访问所有文件 — 特别是,您无法在 Android 4.4+ 上使用它从 removable storage 上传文件。
【讨论】:
以上是关于使用 ACTION_GET_CONTENT 选择文件路径时获取文件路径的正确方法的主要内容,如果未能解决你的问题,请参考以下文章
Android ACTION_GET_CONTENT 不更新下载目录文件
Android:如何在 ACTION_GET_CONTENT 中设置初始目录