0

我正在检查设备上是否存在文件,如下所示:

boolean fileExists = new File(fullPathName).isFile();

它工作正常,但如果文件不存在,logcat 会给我两个错误:

BitmapFactory | Unable to decode stream: java.io.FileNotFoundException: <fullPathName> ...

JHEAD | can't open <fullPathName> ...

如何在不产生异常的情况下检查文件是否存在?

4

1 回答 1

2

尝试这个

File f= new File(fullPathName);
if(f.exists())
{
}
于 2013-04-21T17:20:28.840 回答