android-从网址下载PDF并阅读

android-从网址下载PDF并阅读,第1张

概述publicvoidopenDocumentWithInstalledApp(Stringfilename){Stringmimetype="";url=url+filename;if(!url.startsWith("http://")&&!url.startsWith("https://")){url="http://"+url;}Intentbrowser

public voID opendocumentWithInstalledApp(String filename) {String mimetype = "";url = url+ filename;if (!url.startsWith("http://") && !url.startsWith("https://")) {url = "http://" + url;}Intent browserIntent = new Intent(Intent.ACTION_VIEW, Uri.parse(url));startActivity(browserIntent);/*what should I do?*/mimetype = "application/pdf";file file = new file("/mnt/sdcard/Download/" + filename);Intent intent1 = new Intent(Intent.ACTION_VIEW);intent1.setDataAndType(Uri.fromfile(file), mimetype);intent1.setFlags(Intent.FLAG_ACTIVITY_CLEAR_top);startActivity(intent1);}

首先,我尝试从网址下载pdf.
其次,我尝试阅读上面下载的pdf文件.
但是它可能无法完成下载.
如果我要等待pdf下载完成.
我该怎么办?

解决方法:

另外,您也可以尝试在Google文档中打开pdf.试试下面的代码-

   String pdfurl = "http://www.example.com/yourfile.pdf";   String GoogleDocsUrl = "http://docs.Google.com/vIEwer?url="+pdfurl;   Intent intent = new Intent(Intent.ACTION_VIEW);   intent.setDataAndType(Uri.parse(GoogleDocsUrl ), "text/HTML");   startActivity(intent);
总结

以上是内存溢出为你收集整理的android-从网址下载PDF并阅读全部内容,希望文章能够帮你解决android-从网址下载PDF并阅读所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1095732.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存