在我的应用程序中,用户可以选择文件并在适当的应用程序中打开它们(使用ACTION_VIEW意图)。我需要在给其他应用程序之前对数据做一些工作。所以我使用流解决方案:我实现了一个ContentProvider,实现了openTypedAssetFile
和writeDataToPipe
(这个方法填充由openPipeHelper
创建的输出ParcelFileDescriptor)。
这个工作:我可以打开。pdf文件,。txt文件等。流媒体似乎是正确的。我可以用三方应用打开图片。但是,当我使用Gallery
打开图像时,它不起作用(画廊显示黑屏),并且我得到以下例外:
fail to open myfile.jpg
UriImage(21890): java.io.FileNotFoundException: Not a whole file
我看了一下Gallery源代码(这里),我可以看到这里抛出了异常:
try {
if (MIME_TYPE_JPEG.equalsIgnoreCase(mContentType)) {
InputStream is = mApplication.getContentResolver()
.openInputStream(mUri);
mRotation = Exif.getOrientation(is);
Utils.closeSilently(is);
}
**mFileDescriptor = mApplication.getContentResolver()
.openFileDescriptor(mUri, "r");**
if (jc.isCancelled()) return STATE_INIT;
return STATE_DOWNLOADED;
} catch (FileNotFoundException e) {
Log.w(TAG, "fail to open: " + mUri, e);
return STATE_ERROR;
}
然而,一旦在图库应用程序中,如果我选择"设置为壁纸",那么我可以看到我的图像,然后它很好地流式传输。所以当Gallery打开时,问题就出现了。
在深入研究(在ContentResolver代码等)后,我无法理解为什么它的行为方式。似乎Gallery
不支持流媒体文件。对吗?你知道吗?
String scheme = mUri.getScheme();
ContentResolver contentResolver = getContentResolver();
// If we are sent file://something or
// content://org.openintents.filemanager/mimetype/something...
if (scheme.equals("file")
|| (scheme.equals("content") && fileUri
.getEncodedAuthority().equals(
"org.openintents.filemanager"))) {
// Get the path
filePath = fileUri.getPath();
// Trim the path if necessary
// openintents filemanager returns
// content://org.openintents.filemanager/mimetype//mnt/sdcard/xxxx.jpg
if (filePath.startsWith("/mimetype/")) {
String trimmedFilePath = filePath
.substring("/mimetype/".length());
filePath = trimmedFilePath.substring(trimmedFilePath
.indexOf("/"));
}
} else if (scheme.equals("content")) {
// If we are given another content:// URI, look it up in the
// media provider
filePath = getFilePathFromContentUri(fileUri,
contentResolver);
} else {
Log.e("filePath--------->>>>>", filePath + "");
}
和
private String getFilePathFromContentUri(Uri selectedVideoUri,
ContentResolver contentResolver) {
String filePathString;
String[] filePathColumn = { MediaColumns.DATA };
Cursor cursor = contentResolver.query(selectedVideoUri, filePathColumn,
null, null, null);
cursor.moveToFirst();
int columnIndex = cursor.getColumnIndex(filePathColumn[0]);
filePathString = cursor.getString(columnIndex);
cursor.close();
return filePathString;
}
,现在使用这个文件路径…
try {
if (MIME_TYPE_JPEG.equalsIgnoreCase(mContentType)) {
InputStream is = mApplication.getContentResolver()
.openInputStream(filePath); // ** change is here
mRotation = Exif.getOrientation(is);
Utils.closeSilently(is);
}
** mFileDescriptor = mApplication.getContentResolver()
.openFileDescriptor(filePath, "r"); **
if (jc.isCancelled()) return STATE_INIT;
return STATE_DOWNLOADED;
} catch (FileNotFoundException e) {
Log.w(TAG, "fail to open: " + mUri, e);
return STATE_ERROR;
}
this is work for me