除了以下代码之外,有没有办法检查特定位置是否存在图像?这段代码占用了太多时间。
static boolean isImage(String image_path){
InputStream input = null;
try{
URL url = new URL(image_path);
input = url.openStream();
return true;
}catch(Exception ex){
return false;
}
}
答案 0 :(得分:2)
如果您只想检查文件是否存在:
static boolean isImage(String image_path){
try{
File f = new File(image_path);
return f.exists();
}catch(Exception ex){
return false;
}
}