当前,我有以下代码段,允许用户选择图像
Intent chooserIntent = new Intent(Intent.ACTION_GET_CONTENT);
chooserIntent.setType("image/*");
chooserIntent = Intent.createChooser(chooserIntent, "Select a picture");
startActivityForResult(chooserIntent, SOME_INTEGER_REQUEST_CODE);
这将返回与此类似的内容
content://com.android.providers.media.documents/document/image%3A57
如何获取上次修改时间?
File fileObject = new File("content://com.android.providers.media.documents/document/image%3A57");
Long fileModified = fileObject.lastModified();
这样做只会给我java.lang.IllegalArgumentException: URI scheme is not "file"