我可能在JFileChooser
API 中遗漏了一些明显的东西,但是当我尝试使用 aJFileChooser
来保存文件时,我只能选择要保存到的预先存在的文件,而不能输入新名称并保存到该文件。这是否可能使用JFileChooser
或者我应该使用不同的 API?
我有这段代码可以尝试做我正在尝试的事情:
public static File getUserFile() {
final SaveFileChooser fc = new SaveFileChooser();
fc.setAcceptAllFileFilterUsed(false);
for(FileFilter ch : FileFilterUtils.getAllFilters()) {
fc.addChoosableFileFilter(ch);
}
int option = fc.showSaveDialog(JPad.getFrame());
if (option == JFileChooser.APPROVE_OPTION) {
return fc.getSelectedFile();
}
return null;
}
public static class SaveFileChooser extends JFileChooser {
private static final long serialVersionUID = -8175471295012368922L;
@Override
public void approveSelection() {
File f = getSelectedFile();
if(f.exists() && getDialogType() == SAVE_DIALOG){
int result = JOptionPane.showConfirmDialog(JPad.getFrame(), "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;
}
}
}
}