Answers:
为了向浏览器指示应在浏览器中查看文件,HTTP 响应应包括以下标头:
Content-Type: application/pdf
Content-Disposition: inline; filename="filename.pdf"
要下载而不是查看文件:
Content-Type: application/pdf
Content-Disposition: attachment; filename="filename.pdf"
如果文件名包含特殊字符(例如filename[1].pdf
,否则可能会破坏浏览器处理响应的能力),则必须在文件名周围加上引号。
设置HTTP响应标头的方式将取决于HTTP服务器(或者,如果您是从服务器端代码生成PDF响应的:服务器端编程语言)。
如果您使用的是HTML5(现在我猜每个人都在使用),则有一个名为的属性download
。
例如,
<a href="somepathto.pdf" download="filename">
这filename
是可选的,但是如果提供的话,它将使用下载文件的名称。
正确的类型适用application/pdf
于PDF,而不适用application/force-download
。对于某些旧版浏览器来说,这看起来像是黑客。如果可以,请始终使用正确的模仿类型。
如果您可以控制服务器代码:
header("Content-Disposition", "attachment; filename=myfilename.myextension");
header("Content-Disposition", "inline; filename=myfilename.myextension");
无法控制服务器代码:
注意:我更喜欢在服务器端设置文件名,因为您可能有更多信息,并且可以使用通用代码。
糟糕,我之前的帖子中有输入错误。
header("Content-Type: application/force-download");
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=\"".$name."\";");
如果您不希望浏览器提示用户,请在第三个字符串中使用“内联”而不是“附件”。内联效果很好。PDF会立即显示,而无需用户单击“打开”。我使用了“附件”,这将提示用户打开,保存。我试图更改浏览器设置螺母,但它不会阻止提示。
这是针对ASP.NET MVC
在您的cshtml页面中:
<section>
<h4><a href="@Url.Action("Download", "Document", new { id = @Model.GUID })"><i class="fa fa-download"></i> @Model.Name</a></h4>
<object data="@Url.Action("View", "Document", new { id = @Model.GUID })" type="application/pdf" width="100%" height="800" class="col-md-12">
<h2>Your browser does not support viewing PDFs, click on the link above to download the document.</h2>
</object>
</section>
在您的控制器中:
public ActionResult Download(Guid id)
{
if (id == Guid.Empty)
return null;
var model = GetModel(id);
return File(model.FilePath, "application/pdf", model.FileName);
}
public FileStreamResult View(Guid id)
{
if (id == Guid.Empty)
return null;
var model = GetModel(id);
FileStream fs = new FileStream(model.FilePath, FileMode.Open, FileAccess.Read);
return File(fs, "application/pdf");
}
尽管以下内容在Firefox上运行良好,但在chrome浏览器和移动浏览器上不起作用。
Content-Type: application/pdf
Content-Disposition: inline; filename="filename.pdf"
要修复Chrome和移动浏览器错误,请执行以下操作:
Google PDF Viewer可以这样使用:
<iframe src="http://docs.google.com/gview?url=http://example.com/path/to/my/directory/pdffile.pdf&embedded=true" frameborder="0"></iframe>
从rootfile打开downloads.php。
然后转到第186行并将其更改为以下内容:
if(preg_match("/\.jpg|\.gif|\.png|\.jpeg/i", $name)){
$mime = getimagesize($download_location);
if(!empty($mime)) {
header("Content-Type: {$mime['mime']}");
}
}
elseif(preg_match("/\.pdf/i", $name)){
header("Content-Type: application/force-download");
header("Content-type: application/pdf");
header("Content-Disposition: inline; filename=\"".$name."\";");
}
else{
header("Content-Type: application/force-download");
header("Content-type: application/octet-stream");
header("Content-Disposition: attachment; filename=\"".$name."\";");
}
您可以通过以下方式执行此操作:
<a href="path to PDF file">Open PDF</a>
如果PDF文件位于某个文件夹内,并且该文件夹没有直接访问该文件夹中的文件的权限,则您必须.htaccess
通过以下方式使用文件设置来绕过某些文件访问限制:
<FilesMatch ".*\.(jpe?g|JPE?G|gif|GIF|png|PNG|swf|SWF|pdf|PDF)$" >
Order Allow,Deny
Allow from all
</FilesMatch>
但是现在请确定必要的文件。
我已经使用了这段代码,并且效果很好。
这是强制文件在PHP浏览器中查看的另一种方法:
$extension = pathinfo($file_name, PATHINFO_EXTENSION);
$url = 'uploads/'.$file_name;
echo '<html>'
.header('Content-Type: application/'.$extension).'<br>'
.header('Content-Disposition: inline; filename="'.$file_name.'"').'<br>'
.'<body>'
.'<object style="overflow: hidden; height: 100%;
width: 100%; position: absolute;" height="100%" width="100%" data="'.$url.'" type="application/'.$extension.'">
<embed src="'.$url.'" type="application/'.$extension.'" />
</object>'
.'</body>'
. '</html>';
header
开始输出请求正文后,它不起作用(并且它不返回用于在HTML文档中进行连接的字符串)
只需打开Adobe Reader,菜单→ 编辑 → 首选项 → Internet,然后更改为浏览器模式或有关不同浏览器的详细说明,请尝试在浏览器中显示PDF | Acrobat,Acrobat Reader。
如果您链接到.PDF,它将在浏览器中打开。
如果未选中该框,则应链接到.zip以强制下载。
如果不能选择.zip,则使用PHP中的标头强制下载
header('Content-Type: application/force-download');
header('Content-Description: File Transfer');