我有一个网络应用程序,可让用户下载pdf文件。它是ASP.NET MVC,它在桌面浏览器,iPhone,Android Chrome以及覆盖Web View setDownloadListener()的原生Android应用程序中都能正常工作。
但是,使用默认Android浏览器时,下载似乎不起作用。我正在测试运行4.2.2的Galaxy Nexus和运行2.3.7的Nexus S 4g。我在两台设备上安装了PDF查看器应用程序。
当我在Android Chrome中测试时,用户会看到“正在开始下载...”吐司,然后状态栏中会显示下载完成通知。用户可以触摸此通知以在pdf查看器中打开文件。在Android的默认浏览器中,没有toast,也没有保存下载文件。
我将wireshark放在网络上,我看到以下请求:
GET /appapth/ViewPDF/8383600280757433_11_05_2012 HTTP/1.1
Host: 192.168.1.117
Connection: keep-alive
Accept: text/html,application/xhtml+xml,application/xml;q=0.9,*/*;q=0.8
X-Requested-With: com.google.android.browser
User-Agent: Mozilla/5.0 (Linux; U; Android 4.2.2; en-us; Galaxy Nexus Build/JDQ39) AppleWebKit/534.30 (KHTML, like Gecko) Version/4.0 Mobile Safari/534.30
Accept-Encoding: gzip,deflate
Accept-Language: en-US
Accept-Charset: utf-8, iso-8859-1, utf-16, *;q=0.7
Cookie: (lots o'cookie data)
,回复是:
HTTP/1.1 200 OK
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Content-Type: application/pdf
Content-Encoding: gzip
Expires: -1
Server: Microsoft-IIS/7.5
Set-Cookie: ___TempData=; path=/
Set-Cookie: ___TempData=(lot's o'cookie data); path=/; HttpOnly
Date: Mon, 01 Apr 2013 18:22:20 GMT
Content-Length: 48244
......YQ.....T...?J.h)...!E.S(lots o'binary data)
从跟踪应用程序中可以看到/ pdf内容已下载。您还可以看到我没有使用内容处置标头,并且使用gzip编码下载了响应。
有关为什么这在默认Android浏览器上不起作用的任何想法?用户无权访问下载的数据,也无法启动查看器(或意图)。响应只是默默地被忽略了。 (我猜测Android默认浏览器需要内容处理或下载时不喜欢Gzip,但我只是在猜测)
更新----
我删除了正在实施Gzip压缩的动作过滤器,我添加了 内容 - 处置附件标题。所以,我的控制器中的MVC代码就像:
public virtual ActionResult ViewPDF(string id)
{
try
{
byte[] pdf = GetPDFContent(id);
FileContentResult fcr = new FileContentResult(pdf, "application/pdf");
fcr.FileDownloadName = id + ".pdf";
return fcr;
}
现在是Http响应:
HTTP/1.1 200 OK
Cache-Control: no-cache, no-store, must-revalidate
Pragma: no-cache
Content-Type: application/pdf
Expires: -1
Server: Microsoft-IIS/7.5
Content-Disposition: attachment; filename=433_07_05_2012.pdf
Set-Cookie: ___TempData=; path=/
Set-Cookie: ___TempData=(lots o'cookie data);path=/; HttpOnly
Date: Mon, 01 Apr 2013 19:56:07 GMT
Content-Length: 59069
%PDF-1.3 %.... 13 0 obj << (lots o'binary pdf data)
不再有任何gzip和内容处理,但在Android默认浏览器上仍然没有可见的下载。
更新2 ---
尝试了https://stackoverflow.com/a/5728859/90236和http://winzter143.blogspot.com/2012/03/android-handling-of-content-disposition.html以及http://androidforums.com/application-development/256987-android-phone-download-issue-asp-net-website.html的建议,但我仍然得到相同的结果。
答案 0 :(得分:3)
找到了我自己的答案,它比我看的那么简单。我的包含下载链接的页面位于iframe中。 Android默认浏览器中的某些内容在iframe中发生时会丢失您的下载。我将target =“_ blank”添加到启动下载的标记中,现在一切正常。
以下是一些示例代码,用于演示问题和修复。
<html>
<head><title>Test page</title></head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<body>
<a href="http://www.adobe.com/products/eulas/pdfs/Photoshop_On_a_Server_Policy_5-31-2011.pdf">
Download sample pdf</a><br />
<iframe src="inner.html" />
</body>
</html>
和inner.html:
<html>
<head><title>test iframe</title></head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<body>
<p>This does NOT work on Android default browser.
<a href="http://www.adobe.com/products/eulas/pdfs/Photoshop_On_a_Server_Policy_5-31-2011.pdf">
Download sample pdf within iframe</a></p>
<p><a href="http://www.adobe.com/products/eulas/pdfs/Photoshop_On_a_Server_Policy_5-31-2011.pdf"
target="_blank">Download sample pdf within iframe with target</a>.</p>
</body>
</html>