19

我想PDF直接在浏览器中查看文件。我知道这个问题已经被问过了,但我还没有找到适合我的解决方案。

到目前为止,这是我的操作的控制器代码:

public ActionResult GetPdf(string fileName)
{
    string filePath = "~/Content/files/" + fileName;
    return File(filePath, "application/pdf", fileName);
}

这是我的看法:

@{
   doc = "Mode_d'emploi.pdf";
} 

<p>@Html.ActionLink(UserResource.DocumentationLink, "GetPdf", "General", new { fileName = doc }, null)</p>

当我将鼠标悬停在这里的链接是链接:

在此处输入图像描述

我的代码的问题是pdf文件没有在浏览器中查看,但我收到一条消息,询问我是否要打开或保存文件。

在此处输入图像描述

我知道这是可能的,并且我的浏览器支持它,因为我已经在另一个网站上对其进行了测试,允许我pdf直接在浏览器中查看。

例如,这是我将鼠标悬停在链接上时的链接(在另一个网站上):

在此处输入图像描述

如您所见,生成的链接有所不同。我不知道这是否有用。

pdf知道如何直接在浏览器中查看我的吗?

4

7 回答 7

50

您收到要求您打开或保存文件的消息的原因是您正在指定文件名。如果您不指定文件名,PDF 文件将在您的浏览器中打开。

因此,您需要做的就是将您的操作更改为:

public ActionResult GetPdf(string fileName)
{
    string filePath = "~/Content/files/" + fileName;
    return File(filePath, "application/pdf");
}

或者,如果您需要指定文件名,则必须这样做:

public ActionResult GetPdf(string fileName)
{
    string filePath = "~/Content/files/" + fileName;
    Response.AddHeader("Content-Disposition", "inline; filename=" + fileName);        

    return File(filePath, "application/pdf");
}
于 2016-11-23T22:02:25.960 回答
24

不要返回 a File,而是尝试返回 aFileStreamResult

public ActionResult GetPdf(string fileName)
{
    var fileStream = new FileStream("~/Content/files/" + fileName, 
                                     FileMode.Open,
                                     FileAccess.Read
                                   );
    var fsResult = new FileStreamResult(fileStream, "application/pdf");
    return fsResult;
}
于 2013-02-05T18:48:15.613 回答
11

将您的代码更改为:

       Response.AppendHeader("Content-Disposition","inline;filename=xxxx.pdf");
       return File(filePath, "application/pdf");
于 2015-04-05T19:08:57.460 回答
1

如果您读取存储在数据库图像列中的文件,您可以像这样使用:

public ActionResult DownloadFile(int id)
{
    using (var db = new DbContext())
    {
        var data =
            db.Documents.FirstOrDefault(m => m.ID == id);
        if (data == null) return HttpNotFound();
        Response.AppendHeader("content-disposition", "inline; filename=filename.pdf");
        return new FileStreamResult(new MemoryStream(data.Fisier.ToArray()), "application/pdf");
    }
}
于 2015-02-19T09:41:20.580 回答
0

如果您使用Rotativa包生成 PDF,则不要将名称添加到具有FileName属性的文件中,如下例所示。

 return new PartialViewAsPdf("_JcPdfGenerator", pdfModel);

希望这对某人有帮助。

于 2018-01-04T17:25:11.347 回答
0

尽管以前的帖子通常是正确的;我认为他们中的大多数都不是最佳实践!我想建议将动作返回类型更改为FileContentResultreturn new FileContentResult(fileContent, "application/pdf"); 在动作主体的末尾使用。

于 2018-07-21T09:00:49.737 回答
0

是的,您只需重定向即可。它像你需要的那样结束扩展,.pdf ..

protected void OpenPdfPdf_Click(object sender, EventArgs e)
        {
            Response.Redirect("jun.pdf");
        }

或另一种方法,其打开方式类似于 .aspx 页面——

 protected void OpenPdf_Click(object sender, EventArgs e)
        {
            string path = Server.MapPath("jun.pdf");
            //or you want to load from url change path to
//string path="https://www.w3.org/WAI/ER/tests/xhtml/testfiles/resources/pdf/dummy.pdf";   
            WebClient client = new WebClient();
            Byte[] buffer = client.DownloadData(path);
            if (buffer != null)
            {
                Response.ContentType = "application/pdf";
                Response.AddHeader("content-length", buffer.Length.ToString());
                Response.BinaryWrite(buffer);
            }
        }
于 2020-05-30T07:35:08.587 回答