gpt4 book ai didi

java - 无法从解析服务器下载大于 20mb 的 pdf 文件

转载 作者:行者123 更新时间:2023-11-30 04:59:22 27 4
gpt4 key购买 nike

我已经将 PDF 文件上传到解析服务器,其中一些超过 20mb。这些文件无法通过 Google 预览加载,因为我尝试将它们加载到 webView 中。

超过 20 mb 的文件我通过 Intent 打开它们。

if (isLessThan20) {
myWebView.getSettings().setAppCacheEnabled(true);
myWebView.loadUrl(Url);
//url is the *https://docs.google.com/viewer?url= + pdf link*
} else {
Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));
startActivity(browserIntent);
//only pdf url
}

pdf 加载成功以实现快速互联网连接,但无法加载大约 1mbps 的互联网速度。

我认为是在成功加载 pdf 之前解析服务器超时。

以下是示例链接:

http://15.206.28.221/parse/files/8e207ab717fc666494e38973c099fa517fc06b54/1cded668b42d8b779803a34498abca7d_a.pdf

尝试加载 pdf,请告诉我。

最佳答案

我能够通过高速互联网连接下载文件。您可能是正确的,某些事情正在超时。我们需要更多信息来确定超时发生的位置。

我的建议是不要使用 Mongo Gridstore 来存储大文件。相反,使用 AWS S3 或 Google Cloud Storage 中的任何一个都可以解决这个问题。

参见:https://github.com/parse-community/parse-server#configuring-file-adapters

关于java - 无法从解析服务器下载大于 20mb 的 pdf 文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58498496/

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