我正在检查设备上是否存在文件,如下所示:
boolean fileExists = new File(fullPathName).isFile();
它工作正常,但如果文件不存在,logcat会给我两个错误:
BitmapFactory | Unable to decode stream: java.io.FileNotFoundException: <fullPathName> ...
和
JHEAD | can't open <fullPathName> ...
如何在不生成异常的情况下检查文件是否存在?
答案 0 :(得分:2)
试试这个
File f= new File(fullPathName);
if(f.exists())
{
}