如何在java中的工作区中检查图像文件是否存在特定位置?

时间:2015-07-14 20:38:36

标签: java

我需要检查图像是否存在于给定的路径中。我有路。这就是我尝试的方式:

String imagePath = "_images/blogimages/fileName.jpg";
File f = new File(imagePath);
if (f.exists()) {
     return imagePath;
} else {
     return "someOtherPath";
}

然而,它总是进入其他方面。 f.exists()似乎不使用图像文件。当图像存在于给定路径时,我需要返回imagePath。任何帮助赞赏。

0 个答案:

没有答案