我是android的新手,我想把下载的Pdf文件保存到"DIRECTORY_DOCUMENTS"中,因为当我保存到下载文件夹时,它不会在我的应用程序中显示应用程序。这是代码(当我换到其他目录并把我的pdf放在里面时,它就可以工作了(。
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
final ListView lv = findViewById(R.id.lv);
lv.setAdapter(new CustomAdapter(MainActivity.this, getPDFs()));
}
private ArrayList<PDFDoc> getPDFs()
{
ArrayList<PDFDoc> pdfDocs = new ArrayList<>();
//TARGET FOLDER
File downloadsFolder = Environment.getExternalStoragePublicDirectory(Environment.DIRECTORY_DOCUMENTS);
PDFDoc pdfDoc;
if (downloadsFolder.exists()) {
//GET ALL FILES IN DOWNLOAD FOLDER
File[] files = downloadsFolder.listFiles();
//LOOP THRU THOSE FILES GETTING NAME AND URI
for (File file : files) {
if (file.getPath().endsWith("pdf")) {
pdfDoc = new PDFDoc();
pdfDoc.setName(file.getName());
pdfDoc.setPath(file.getAbsolutePath());
pdfDocs.add(pdfDoc);
}
}
}
return pdfDocs;
}
}
您正在获取所有PDF文件。我看不到任何下载文件的方法。永远不会。如果你下载了新文件,但你没有看到它,试着称这种方法为
Intent intent = new Intent(Intent.ACTION_MEDIA_SCANNER_SCAN_FILE, Uri.fromFile(file));
sendBroadcast(intent);