3
我已經使用下載管理器下載了文件(133465.pdf),現在它存儲在手機(內部存儲器)的Downloads文件夾中。從內部存儲的下載文件夾中打開下載的文件(pdf)
我應該如何嘗試從下載文件夾中檢索下載的pdf文件?
我使用下面的代碼嘗試從下載文件夾中檢索pdf,但我在吐司上發現錯誤,說「無法顯示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);
我不知道我是否使用正確的文件位置來訪問該文件。
任何幫助或建議,將不勝感激。