从以下网址下载PDF文档阅读它文档、网址、PDF

2023-09-07 00:09:31 作者:北城以念

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);
}

首先,我尝试从URL下载一个PDF文件。 第二,我试着读上面下载PDF。 但它可能无法下载完成。 如果我要等待的PDF下载完成。 我该怎么办?

First, I try to download a pdf from url. Second, I try to read the pdf above download. But it may not download finish. If I want to wait the pdf download finish. What should I do?

推荐答案

作为一种替代方法,你可以尝试在谷歌文档打开PDF文件。尝试下面code -

As an alternative you can try opening pdf in google docs. Try below code-

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