我需要检查图像是否存在于给定的路径中。我有路。这就是我尝试的方式:
String imagePath = "_images/blogimages/fileName.jpg";
File f = new File(imagePath);
if (f.exists()) {
return imagePath;
} else {
return "someOtherPath";
}
然而,它总是进入其他方面。 f.exists()似乎不使用图像文件。当图像存在于给定路径时,我需要返回imagePath。任何帮助赞赏。