如何在任何浏览器中打开文件内容结果而不出现窗口提示

发布于 2024-11-26 13:35:35 字数 403 浏览 2 评论 0原文

我有来自控制器操作方法的文件内容结果,如图所示,内容是 byte[] 类型

FileContentResult file= new FileContentResult(contents, "/PDF");
              Response.AppendHeader("Content-Disposition", "inline; filename=" + filename);
                return file;

现在,如果文件类型已知为 pdf 并指定,为什么不直接在 adobe reader 中打开并提示窗口使用 /saveas 打开。如果我的文件内容结果通过 pdf,我希望它在没有窗口提示的情况下打开。怎么办呢?另外上面的代码在mozilla中只提示窗口,在IE中没有提示或打开。

I have filecontentresult from controller action method as shown ,contents is byte[] type

FileContentResult file= new FileContentResult(contents, "/PDF");
              Response.AppendHeader("Content-Disposition", "inline; filename=" + filename);
                return file;

Now, if the file type is known as pdf and specified, why is not directly opening in adobe reader and prompting window to openwith /saveas. If my filecontentresult passes pdf I want it to open without window propmt. how can it be done? Also the above code only prompting window in mozilla, In IE no prompt or opening.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

南巷近海 2024-12-03 13:35:35

诀窍在于内容类型,你已经将其设置好了。如果浏览器知道如何处理该内容类型,它将打开它:

    public ActionResult GetPDF()
    {
        var path = @"C:\Test\Testing.pdf";
        var contents = System.IO.File.ReadAllBytes(path);

        return File(contents, "application/pdf");
    }

The trick is in content type, you've set it worng. If browser knows how to handle that content type it will open it:

    public ActionResult GetPDF()
    {
        var path = @"C:\Test\Testing.pdf";
        var contents = System.IO.File.ReadAllBytes(path);

        return File(contents, "application/pdf");
    }
你的背包 2024-12-03 13:35:35

答案就在一行里。

返回新的 FileContentResult(documentModel.DocumentData, documentModel.DocumentMediaType);

将其放在上下文中是 DocumentSave...

    private bool SaveDocument(DwellingDocumentModel doc, HttpPostedFileBase files)
    {
        if (Request.Files[0] != null)
        {
            byte[] fileData = new byte[Request.Files[0].InputStream.Length];
            Request.Files[0].InputStream.Read(fileData, 0, Convert.ToInt32(Request.Files[0].InputStream.Length));

            doc.DocumentData = fileData;
            doc.DocumentMediaType = Request.Files[0].ContentType;
        }

        if (doc.Save())
        {
            return true;
        }

        return false;
    }

The answer in one line.

return new FileContentResult(documentModel.DocumentData, documentModel.DocumentMediaType);

And to put it into context here is the DocumentSave...

    private bool SaveDocument(DwellingDocumentModel doc, HttpPostedFileBase files)
    {
        if (Request.Files[0] != null)
        {
            byte[] fileData = new byte[Request.Files[0].InputStream.Length];
            Request.Files[0].InputStream.Read(fileData, 0, Convert.ToInt32(Request.Files[0].InputStream.Length));

            doc.DocumentData = fileData;
            doc.DocumentMediaType = Request.Files[0].ContentType;
        }

        if (doc.Save())
        {
            return true;
        }

        return false;
    }
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文