如何打开以前存储在“privat”文件系统中的文件?该文件由Web服务下载,应存储在本地fs中。 尝试通过Intent(Action_View)打开文件时出现“奇怪”错误。虽然文件存在于文件系统中(在模拟器/ eclipse中看到文件浏览器中的文件),但它不会显示在启动的调用galery活动中。而不是图片,galery显示黑色屏幕没有内容(除了操作栏)。尝试通过此方法打开pdf / movie / mp3文件时也会出现同样的情况(pdf表示文件已损坏)。
BTW:存储在本地fs上的数据有效(没有损坏),我从调试器下载文件(通过pull方法),文件可以在我的工作站上打开......
public void onAttachment(Context context, Attachment attachment) {
try {
//Attachment is a structured data object that contains of a byte[], filename and mimetype (like image/jpeg)
FileOutputStream fos = FileOutputStream fos = context.openFileOutput(attachment.getAttachmentFileName(), Context.MODE_PRIVATE);
fos.write(attachment.getBinary());
fos.flush();
fos.close();
File f = context.getFileStreamPath(attachment.getAttachmentFileName());
Uri uri = Uri.fromFile(f);
Intent intent = new Intent(Intent.ACTION_VIEW);
intent.setDataAndType(uri,attachment.getAttachmentMimetype());
context.startActivity(intent);
} catch (IOException e) {
e.printStackTrace();
}
}
答案 0 :(得分:12)
代码中的附件是什么类型的?也许它会返回错误的mime类型?
此代码适用于我:
File file = new File("EXAMPLE.JPG");
// Just example, you should parse file name for extension
String mime = MimeTypeMap.getSingleton().getMimeTypeFromExtension(".JPG");
Intent intent = new Intent();
intent.setAction(android.content.Intent.ACTION_VIEW);
intent.setDataAndType(Uri.fromFile(file), mime);
startActivityForResult(intent, 10);
答案 1 :(得分:2)
您无法打开不在SD卡上的文件。 您需要将文件复制到SD卡然后打开它。
答案 2 :(得分:2)
将位置设置为“openFileOutput("fileName", Activity.MODE_WORLD_READABLE)
”时,它会起作用。其他应用无法读取设置为“Context.MODE_PRIVATE
”