1

我有一个函数应该获取在 a 的文本输入中键入的文件的路径jfilechooser并将其传递给 a String。问题是如果文件已经存在,我想检查是否覆盖。我确实知道如何执行此操作,但我的问题是,如果对 回答不,无论如何都会关闭,因为保存按钮已经被操作。现在,我需要的是,如果答案是否定的,程序返回到,仍然提示输入名称。 JOptionPaneJFileChooserJFileChooser

请注意,我正在寻找一个有效的解决方案,我已经考虑过再次执行该功能,但是由于我的程序很大,因此这种解决问题的方法会花费时间并且效率不高。

这是我的函数的代码,尚未完成,因为我不知道如何处理它。

`public String FileSavePath()throws NullPointerException
    {
        File f=null;
        String theFilepath=null;
        JFileChooser FileChooser = new JFileChooser();
        if(FileChooser.showSaveDialog(null)==JFileChooser.APPROVE_OPTION)
        {
            theFilepath=FileChooser.getSelectedFile().getAbsolutePath();
            f=FileChooser.getSelectedFile();
            //System.out.println(theFile);
            if(f.exists())
            {
                int result = JOptionPane.showConfirmDialog(this,"The file exists, overwrite?",
                        "Existing file",JOptionPane.YES_NO_CANCEL_OPTION);
                if(result==JOptionPane.YES_OPTION)
                           {
                   return theFilepath;

                  }
          else // here is what I should do if the user answers 'no' or cancels/closes the JOptionPane
        }
        else return null;
        return theFilepath;

    }`
4

1 回答 1

2

您需要将查询放入循环中,直到用户可以为您提供可接受的响应...

public String FileSavePath() throws NullPointerException {

    boolean acceptable = false;
    String theFilepath = null;

    do {
        theFilepath = null
        File f = null;
        JFileChooser FileChooser = new JFileChooser();
        if (FileChooser.showSaveDialog(null) == JFileChooser.APPROVE_OPTION) {
            theFilepath = FileChooser.getSelectedFile().getAbsolutePath();
            f = FileChooser.getSelectedFile();
            //System.out.println(theFile);
            if (f.exists()) {
                int result = JOptionPane.showConfirmDialog(this, "The file exists, overwrite?",
                        "Existing file", JOptionPane.YES_NO_CANCEL_OPTION);
                if (result == JOptionPane.YES_OPTION) {
                    acceptable = true;
                }
            } else {
                acceptable = true;
            }
        } else {
            acceptable = true;
        }
    } while (!acceptable);

    return theFilepath;

}
于 2012-11-25T23:42:04.467 回答