我正在开发一个程序,用于加载和保存文本文件中的数据,我正在向用户询问加载并保存JFileChooser的文件名。
此问题与保存对话框有关:new JFileChooser().showSaveDialog();
。然后,用户可以在没有任何警告的情况下覆盖现有文件,并且将是一个问题。
有关如何解决此问题的任何建议?我一直在寻找一些方法或选项,但我没有找到任何东西。
提前致谢。
答案 0 :(得分:76)
感谢您的回答,但我找到了另一种解决方法,以这种方式覆盖了JFileChooser的approveSelection():
JFileChooser example = new JFileChooser(){
@Override
public void approveSelection(){
File f = getSelectedFile();
if(f.exists() && getDialogType() == SAVE_DIALOG){
int result = JOptionPane.showConfirmDialog(this,"The file exists, overwrite?","Existing file",JOptionPane.YES_NO_CANCEL_OPTION);
switch(result){
case JOptionPane.YES_OPTION:
super.approveSelection();
return;
case JOptionPane.NO_OPTION:
return;
case JOptionPane.CLOSED_OPTION:
return;
case JOptionPane.CANCEL_OPTION:
cancelSelection();
return;
}
}
super.approveSelection();
}
}
我希望这对其他人有用。
答案 1 :(得分:4)
正如AvrDragon所说,关闭X并没有得到处理。我添加了一个默认案例来处理所有不相关的选项:
final JFileChooser fc = new JFileChooser() {
private static final long serialVersionUID = 7919427933588163126L;
public void approveSelection() {
File f = getSelectedFile();
if (f.exists() && getDialogType() == SAVE_DIALOG) {
int result = JOptionPane.showConfirmDialog(this,
"The file exists, overwrite?", "Existing file",
JOptionPane.YES_NO_CANCEL_OPTION);
switch (result) {
case JOptionPane.YES_OPTION:
super.approveSelection();
return;
case JOptionPane.CANCEL_OPTION:
cancelSelection();
return;
default:
return;
}
}
super.approveSelection();
}
};
答案 2 :(得分:3)
在保存之前检查是否已存在相同的文件然后询问用户是否确实要覆盖:p
JDialog.setDefaultLookAndFeelDecorated(true);
int response = JOptionPane.showConfirmDialog(null, "Are you sure you want to override existing file?", "Confirm",
JOptionPane.YES_NO_OPTION, JOptionPane.QUESTION_MESSAGE);
if (response == JOptionPane.NO_OPTION) {
System.out.println("No button clicked");
} else if (response == JOptionPane.YES_OPTION) {
System.out.println("Yes button clicked");
} else if (response == JOptionPane.CLOSED_OPTION) {
System.out.println("JOptionPane closed");
}
here是代码
要检查文件已存在,请使用
boolean exists = (new File("filename")).exists();
if (exists) {
// File or directory exists
} else {
// File or directory does not exist
}
答案 3 :(得分:1)
也许你可以验证该文件是否已经存在,甚至可以给JFileChooser FileSystemView
(见this constructor)
答案 4 :(得分:1)
我是根据你自己的答案写的。发布以防其他人认为有用:
final JFileChooser exportFileChooser = new JFileChooser();
exportFileChooser.setFileSelectionMode(JFileChooser.FILES_ONLY);
exportFileChooser.setApproveButtonText("Export");
final JButton exportButton = new JButton("Export text file");
exportButton.addActionListener(new ActionListener() {
@Override
public void actionPerformed(ActionEvent e) {
int returnVal = exportFileChooser.showSaveDialog(exportButton
.getParent());
if (returnVal == JFileChooser.APPROVE_OPTION) {
File outputFile = exportFileChooser.getSelectedFile();
if (outputFileIsValid(outputFile)) {
exportFile(outputFile);
}
}
}
private boolean outputFileIsValid(File outputFile) {
boolean fileIsValid = false;
if (outputFile.exists()) {
int result = JOptionPane.showConfirmDialog(
exportButton.getParent(),
"File exists, overwrite?", "File exists",
JOptionPane.YES_NO_CANCEL_OPTION);
switch (result) {
case JOptionPane.YES_OPTION:
fileIsValid = true;
break;
default:
fileIsValid = false;
}
} else {
fileIsValid = true;
}
return fileIsValid;
}
});