使用Google Docs在WebView中打开本地PDF文件

时间:2013-10-01 14:26:14

标签: android pdf webview google-docs

有一百万个类似的问题/答案,都解决了如何使用Google Docs + webview打开远程 PDF文件。

无论如何打开本地 PDF文件。

鉴于这些字符串:

String remotePath = "https://myserver.com/data/files/organization/4/pdf/kalinka1369-1374847709-55.pdf";

String localPath = "file:///storage/emulated/0/Droid Noid/com.story.chapters/kalinka1369-1374847709-55.pdf";

String googleDocsURL = "https://docs.google.com/gview?embedded=true&url=";

这有效:

webview.loadUrl(googleDocsURL + remotePath);

然而这不是:

webview.loadUrl(googleDocsURL + localPath);

我意识到localPath中有一个空格,我尝试将其编码无效:

String encodedLocalPath = "file:///storage/emulated/0/Droid+Noid/com.story.chapters/kalinka1369-1374847709-55.pdf";

是否可以使用Google Docs + webview打开本地 PDF文件?如果是这样,怎么样?

1 个答案:

答案 0 :(得分:6)

  

是否可以使用Google Docs + webview打开本地PDF文件?

只有您在互联网上的某个地方上传PDF文档,Google Docs才能访问它,或者安排其他人在互联网上的某个地方上传PDF文档,Google Docs可以访问它(例如Google Drive)。