6

我有一个网络应用程序,可让用户下载 pdf 文件。它是 ASP.NET MVC,在桌面浏览器、iPhone、Android Chrome 和覆盖 Web 视图 setDownloadListener() 的原生 Android 应用程序中都可以正常工作。

但是,使用默认的 Android 浏览器时,下载似乎不起作用。我正在运行 4.2.2 的 Galaxy Nexus 和运行 2.3.7 的 Nexus S 4g 上进行测试。我在两台设备上都安装了 PDF 查看器应用程序。

当我在 Android Chrome 中进行测试时,用户会看到“开始下载...”toast,然后状态栏中会显示下载完成通知。用户可以触摸此通知以在 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 内容中看到的那样已下载。您还可以看到我没有使用 content-disposition 标头,并且响应是使用 gzip 编码下载的。

关于为什么这在默认 Android 浏览器上不起作用的任何想法?用户无权访问下载的数据,也没有启动查看器(或意图)。响应只是默默地忽略。(我猜Android默认浏览器需要内容配置或者不喜欢下载的Gzip,但我只是在猜测)

更新 - -

我删除了执行 Gzip 压缩的操作过滤器,并在 Content-Disposition 附件标题中添加。所以,我的控制器中的 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/90236http://winzter143.blogspot.com/2012/03/android-handling-of-content-disposition.htmlhttp://androidforums 的建议。 com/application-development/256987-android-phone-download-issue-asp-net-website.html但我仍然得到相同的结果。

4

1 回答 1

3

找到了我自己的答案,它比我正在寻找的地方简单得多。我的带有下载链接的页面位于 iframe 中。如果在 iframe 中出现,Android 默认浏览器中的某些内容会丢失您的下载。我将 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>
于 2013-04-02T13:36:31.033 回答