当我尝试使用已存在的文件名保存文件时,我需要提示用户重命名文件才能保存。提示用户将文件重命名为目录中存在相同文件的更好方法是什么?我需要通过我用来保存文件的同一个对话框来实现这一点。
File exportFile = new File(FilePath + "\\"+ FileName);
boolean exists = exportFile.exists();
if (!exists) {
System.out.println("File does not exists");
// TODO code here
}
else{
System.out.println( "File exists.");
// TODO code here
}
代码将在 //TODO 部分中实现。我怎样才能做到这一点?