我需要将已下载的mp3文件显示到Listview中,并且还希望像下载任何mp3文件一样进行验证,然后如果该mp3存在于SD卡中,则用户应该获得“已经下载”的消息。
任何人都可以告诉我如何做到这一点吗?
答案 0 :(得分:2)
File bookFile = new File("/sdcard/"+filename);
if(bookFile.exists())
{
System.out.println("Downloaded");
}
else
{
System.out.println("want to Download");
}