gpt4 book ai didi

Android 浏览器无法下载 pdf 文件

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:11:46 28 4
gpt4 key购买 nike

我有一个允许用户下载 pdf 文件的网络应用程序。它是 ASP.NET MVC,在桌面浏览器、iPhone、Android Chrome 和覆盖 Web View setDownloadListener() 的 native 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 header ,并且响应是使用 gzip 编码下载的。

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

更新----

我删除了实现 Gzip 压缩的操作过滤器,并在内容处理附件 header 。所以,我的 Controller 中的 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.htmlhttp://androidforums.com/application-development/256987-android-phone-download-issue-asp-net-website.html但我仍然得到相同的结果。

最佳答案

找到了我自己的答案,它比我寻找的地方简单得多。我的带有下载链接的页面位于 iframe 中。如果出现在 iframe 中,Android 默认浏览器中的某些内容会丢失您的下载。我将 target="_blank"添加到启动下载的 a 标签,现在一切正常。

这里有一些示例代码来演示问题和修复。

<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>

关于Android 浏览器无法下载 pdf 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15750012/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com