16

如何打开以前存储在“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();
    }
}           
4

3 回答 3

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);
于 2012-09-25T15:13:08.860 回答
2

您不能像那样打开不在 sdcard 上的文件。您需要将文件复制到 SD 卡,然后打开它。

于 2012-09-25T16:19:56.527 回答
2

将位置设置为“ openFileOutput("fileName", Activity.MODE_WORLD_READABLE)”时,它将起作用。Context.MODE_PRIVATE设置为“ ”时,其他应用程序无法读取存储的数据(即使查看)

参见stackoverflow上的其他帖子

于 2012-09-26T14:08:43.043 回答