在存储文件之前,我正在检查文件名是否已存在(以防止覆盖)
为此,我使用以下代码
以下代码的问题是无法保证newimage尚不存在。
public static String ImageOverrideChecker(String image_name)throws IOException{
String newimage = "";
ArrayList<String> image_nameslist = new ArrayList<String>();
File file = new File("/Images/");
File[] files = file.listFiles();
for(File f: files){
image_nameslist.add(f.getName());
}
if(image_nameslist.contains(image_name))
{
Random randomGenerator = new Random();
int randomInt = randomGenerator.nextInt(1000);
Matcher matcher = Pattern.compile("(.*)\\.(.*?)").matcher(image_name);
if (matcher.matches())
{
newimage = String.format("%s_%d.%s", matcher.group(1), randomInt,matcher.group(2));
}
}
else
{
newimage = image_name;
}
return newimage;
}
答案 0 :(得分:2)
要查看文件名是否存在,只需将其检查如下:
File file = new File(filePath);
if (file.exists()) {
// do something
}
请注意,该文件也可以是目录,而不一定是真正的文件。 如果您还需要检查它是否是文件:
File file = new File(filePath);
if (file.exists() && !file.isDirectory()) {
// do something
}