我知道图像的绝对路径(例如/sdcard/cats.jpg)。有没有办法获取此文件的内容uri?
实际上,在我的代码中,我下载了一个图像并将其保存在特定位置。为了在ImageView实例中设置图像,当前我使用路径打开文件,获取字节并创建位图,然后在ImageView实例中设置位图。这是一个非常缓慢的过程,相反,如果我可以获得内容uri,那么我可以非常轻松地使用该方法 imageView.setImageUri(uri)
我知道图像的绝对路径(例如/sdcard/cats.jpg)。有没有办法获取此文件的内容uri?
实际上,在我的代码中,我下载了一个图像并将其保存在特定位置。为了在ImageView实例中设置图像,当前我使用路径打开文件,获取字节并创建位图,然后在ImageView实例中设置位图。这是一个非常缓慢的过程,相反,如果我可以获得内容uri,那么我可以非常轻松地使用该方法 imageView.setImageUri(uri)
Answers:
尝试:
ImageView.setImageURI(Uri.fromFile(new File("/sdcard/cats.jpg")));
或搭配:
ImageView.setImageURI(Uri.parse(new File("/sdcard/cats.jpg").toString()));
Uri.fromFile
在Android 26+上无法正常使用,您应该使用文件提供程序
更新
此处假定您的媒体(图像/视频)已添加到内容媒体提供者。否则,您将无法获得所需的内容URL。而是会有文件Uri。
我对文件浏览器活动有相同的问题。您应该知道,文件的contenturi仅支持媒体存储数据,例如图像,音频和视频。我给你的代码,用于从sdcard中选择图像来获取图像内容uri。试试这个代码,也许它将为您服务...
public static Uri getImageContentUri(Context context, File imageFile) {
String filePath = imageFile.getAbsolutePath();
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));
cursor.close();
return Uri.withAppendedPath(MediaStore.Images.Media.EXTERNAL_CONTENT_URI, "" + id);
} else {
if (imageFile.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;
}
}
}
MediaStore.Images.Media
为MediaStore.Video.Media
,但仍然没有运气。
//此代码适用于2.2上的图像,不确定是否还有其他媒体类型
//Your file path - Example here is "/sdcard/cats.jpg"
final String filePathThis = imagePaths.get(position).toString();
MediaScannerConnectionClient mediaScannerClient = new
MediaScannerConnectionClient() {
private MediaScannerConnection msc = null;
{
msc = new MediaScannerConnection(getApplicationContext(), this);
msc.connect();
}
public void onMediaScannerConnected(){
msc.scanFile(filePathThis, null);
}
public void onScanCompleted(String path, Uri uri) {
//This is where you get your content uri
Log.d(TAG, uri.toString());
msc.disconnect();
}
};
接受的解决方案可能是您最佳的选择,但实际上可以在主题行中回答问题:
在我的应用程序中,我必须从URI获取路径,并从路径获取URI。前者:
/**
* Gets the corresponding path to a file from the given content:// URI
* @param selectedVideoUri The content:// URI to find the file path from
* @param contentResolver The content resolver to use to perform the query.
* @return the file path as a string
*/
private String getFilePathFromContentUri(Uri selectedVideoUri,
ContentResolver contentResolver) {
String filePath;
String[] filePathColumn = {MediaColumns.DATA};
Cursor cursor = contentResolver.query(selectedVideoUri, filePathColumn, null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
filePath = cursor.getString(columnIndex);
cursor.close();
return filePath;
}
后者(我用于视频,但也可以通过用MediaStore.Audio(等)替换MediaStore.Video来用于音频或文件或其他类型的存储内容):
/**
* Gets the MediaStore video ID of a given file on external storage
* @param filePath The path (on external storage) of the file to resolve the ID of
* @param contentResolver The content resolver to use to perform the query.
* @return the video ID as a long
*/
private long getVideoIdFromFilePath(String filePath,
ContentResolver contentResolver) {
long videoId;
Log.d(TAG,"Loading file " + filePath);
// This returns us content://media/external/videos/media (or something like that)
// I pass in "external" because that's the MediaStore's name for the external
// storage on my device (the other possibility is "internal")
Uri videosUri = MediaStore.Video.Media.getContentUri("external");
Log.d(TAG,"videosUri = " + videosUri.toString());
String[] projection = {MediaStore.Video.VideoColumns._ID};
// TODO This will break if we have no matching item in the MediaStore.
Cursor cursor = contentResolver.query(videosUri, projection, MediaStore.Video.VideoColumns.DATA + " LIKE ?", new String[] { filePath }, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(projection[0]);
videoId = cursor.getLong(columnIndex);
Log.d(TAG,"Video ID is " + videoId);
cursor.close();
return videoId;
}
基本上,该DATA
列MediaStore
(或您要查询的任何子节)存储文件路径,因此您可以使用该信息进行查找。
OpenableColumns.DISPLAY_NAME & OpenableColumns.SIZE
,发送方的应用程序甚至遵循“规则”。我发现一些主要的应用程序仅返回这两个字段,而并不总是返回该_data
字段。如果没有通常包含指向内容的直接路径的数据字段,则必须先读取内容并将其写入文件或内存,然后才拥有自己的路径。
您可以根据用途使用这两种方式
Uri uri = Uri.parse("String file location");
要么
Uri uri = Uri.fromFile(new File("string file location"));
我尝试了两种方式,并且都可行。
content://
从文件创建内容Uri的最简单,最可靠的方法是使用FileProvider。FileProvider提供的Uri也可以用于提供Uri以便与其他应用程序共享文件。要从绝对路径获取File Uri,File
可以使用DocumentFile.fromFile(new File(path,name)),它已添加到Api 22中,并且对于以下版本返回null。
File imagePath = new File(Context.getFilesDir(), "images");
File newFile = new File(imagePath, "default_image.jpg");
Uri contentUri = getUriForFile(getContext(), "com.mydomain.fileprovider", newFile);
它已经晚了,但将来可能会帮助某个人。
要获取文件的内容URI,可以使用以下方法:
FileProvider.getUriForFile(Context context, String authority, File file)
它返回内容URI。
仅使用adb shell CLI命令即可获取文件ID,而无需编写任何代码:
adb shell content query --uri "content://media/external/video/media" | grep FILE_NAME | grep -Eo " _id=([0-9]+)," | grep -Eo "[0-9]+"
Permission Denial: Do not have permission in call getContentProviderExternal() from pid=15660, uid=10113 requires android.permission.ACCESS_CONTENT_PROVIDERS_EXTERNALLY
,除非您扎根。
最好使用验证来支持Android N之前的版本,例如:
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
imageUri = Uri.parse(filepath);
} else{
imageUri = Uri.fromFile(new File(filepath));
}
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.N) {
ImageView.setImageURI(Uri.parse(new File("/sdcard/cats.jpg").toString()));
} else{
ImageView.setImageURI(Uri.fromFile(new File("/sdcard/cats.jpg")));
}
你可以尝试下面的代码片段
public Uri getUri(ContentResolver cr, String path){
Uri mediaUri = MediaStore.Files.getContentUri(VOLUME_NAME);
Cursor ca = cr.query(mediaUri, new String[] { MediaStore.MediaColumns._ID }, MediaStore.MediaColumns.DATA + "=?", new String[] {path}, null);
if (ca != null && ca.moveToFirst()) {
int id = ca.getInt(ca.getColumnIndex(MediaStore.MediaColumns._ID));
ca.close();
return MediaStore.Files.getContentUri(VOLUME_NAME,id);
}
if(ca != null) {
ca.close();
}
return null;
}