如何打开以前存储在“privat”文件系统中的文件?该文件正在由 Web 服务下载,应存储在本地 fs 上。尝试通过 Intent (Action_View) 打开文件时出现“奇怪”错误。尽管该文件存在于文件系统中(在 emulator/eclipse 的文件资源管理器中看到该文件),但它不会显示在启动的调用画廊活动中。画廊显示的不是图片,而是一个没有内容的黑屏(操作栏除外)。尝试通过此方法打开 pdf/movie/mp3 文件时也会发生同样的情况(例如,pdf 表示文件已损坏)。
顺便说一句:已经存储在本地 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();
}
}