Determine Mime type of a uri in android returned by an intent?

最后都变了- 提交于 2019-12-18 13:28:57

问题


First some context of what I am trying to achieve -

I am developing an Image Sharing application for which I need the user to pick an image from the filesystem .

For this , I am using this code -

    Intent photoPickerIntent = new Intent(Intent.ACTION_GET_CONTENT);
    photoPickerIntent.setType("image/*");
    startActivityForResult(photoPickerIntent, REQUEST_CODE_IMAGE_PICKER_INTENT);

Now , this triggers a chooser wherein I see multiple options including Gallery and a FileManager App that I have in my phone. If i select gallery and choose an image from there then my Activity receives an Intent with a content uri of an Image. But if I choose the FileManager App , I can choose any file which might not be an image . So , what I need is to be able to determine the mime type of the uri returned in the intent. The intent's getType method returns null .

Is there any way to determine the mime from the returned intent to be able to determine if the content is an image or not .

If this doesn't work this way , then I might have to use MimeTypeMap to determine the mime from the file extension.


回答1:


I found a way to get the mime type of a content uri but nothing worked for other kind of uri's such as uri's of the form 'file://.....' .

To get the mime type of content uri's -

    ContentResolver cr = this.getContentResolver();
    String mime = cr.getType(YOUR_CONTENT_URI);

This works only for content uri's . So for other uri's I am using MimeTypeMap to infer their mime type's from the file extension .




回答2:


if you have URI then you can get mimetype like

Uri uri = Uri.fromFile(file);
ContentResolver cR = context.getContentResolver();
String mime = cR.getType(uri);

or try // url = file path or whatever suitable URL you want.

public static String getMimeType(String url)
{
    String type = null;
    String extension = MimeTypeMap.getFileExtensionFromUrl(url);
    if (extension != null) {
        MimeTypeMap mime = MimeTypeMap.getSingleton();
        type = mime.getMimeTypeFromExtension(extension);
    }
    return type;
}

For more details see these Answers



来源:https://stackoverflow.com/questions/15587873/determine-mime-type-of-a-uri-in-android-returned-by-an-intent

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!