我使用下载管理器下载了一个文件(133465.pdf),现在它存储在手机的“下载”文件夹中(内部存储)。
我应该如何尝试从Downloads文件夹中检索下载的pdf?
我使用下面的代码尝试从下载文件夹中检索pdf,但是我在Toast上收到错误,说“无法显示PDF(无法打开133465.pdf)”。
String file = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getPath() + File.separator + "133465.pdf";
Log.i("Fragmentadapter1", file);
File videoFile2Play = new File(file);
Intent i = new Intent();
i.setAction(android.content.Intent.ACTION_VIEW);
i.setDataAndType(Uri.fromFile(videoFile2Play), "application/pdf");
imageContext.startActivity(i);
我不知道我是否使用正确的文件位置来访问该文件。
任何帮助或建议都将不胜感激。
答案 0 :(得分:2)
如果您在Lollopop及以下地区工作:您不必在运行时询问用户是否允许。清单Permissions将会这样做。
如果您正在为Marshmellow工作,那么:您必须在运行时询问用户permission并根据用户输出进行操作。
请记住:您还必须在Manifest上提供权限。
在用户下载文件夹中下载PDF:
DownloadManager downloadmanager;
Environment
.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS)
.mkdirs();
downloadmanager = (DownloadManager) getApplication().getSystemService(Context.DOWNLOAD_SERVICE);
String url = hardcode + bb ;
Uri uri = Uri.parse(url);
DownloadManager.Request request = new DownloadManager.Request(uri)
.setTitle(bb )
.setDestinationInExternalPublicDir(Environment.DIRECTORY_DOWNLOADS,
bb)
.setNotificationVisibility(DownloadManager.Request.VISIBILITY_VISIBLE_NOTIFY_COMPLETED);
Log.i("Download1", String.valueOf(request));
downloadmanager.enqueue(request);
要从用户设备的“下载”文件夹中查看已下载的PDF:
File file = new File(Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOWNLOADS).getPath() + File.separator +
"YOUR FILE NAME");
Uri path = Uri.fromFile(file);
Log.i("Fragment2", String.valueOf(path));
Intent pdfOpenintent = new Intent(Intent.ACTION_VIEW);
pdfOpenintent.setFlags(Intent.FLAG_ACTIVITY_CLEAR_TOP);
pdfOpenintent.setDataAndType(path, "application/pdf");
try {
this.startActivity(pdfOpenintent);
} catch (ActivityNotFoundException e) {
}
注意:确保在下载查看Marshmellow和UP的PDF文件之前获得了许可。