如何理解jFileChooser1.showSaveDialog(this)== JFileChooser.APPROVE_OPTION

时间:2015-12-22 07:23:59

标签: java jfilechooser

我试着理解“jFileChooser1.showSaveDialog(this) == JFileChooser.APPROVE_OPTION”这意味着什么?

我认为jFileChooser1.showSaveDialog(this)会返回SaveDialog,但JFileChooser.APPROVE_OPTION会返回yesok。 他们如何平等?

      private void save() {
    if (jFileChooser1.showSaveDialog(this) ==
      JFileChooser.APPROVE_OPTION) {
        save(jFileChooser1.getSelectedFile());
    }
  }

  /** Save file with specified File instance */
  private void save(File file) {
    try {
      // Write the text in jta to the specified file
      BufferedOutputStream out = new BufferedOutputStream(
        new FileOutputStream(file));
      byte[] b = (jta.getText()).getBytes();
      out.write(b, 0, b.length);
      out.close();

      // Display the status of the save file operation in jlblStatus
      jlblStatus.setText(file.getName()  + " Saved ");
    }
    catch (IOException ex) {
      jlblStatus.setText("Error saving " + file.getName());
    }
  }

1 个答案:

答案 0 :(得分:0)

请参阅此API的JavaDocs

public int showSaveDialog(Component parent) throws HeadlessException

弹出"保存文件"文件选择器对话框。请注意,批准按钮中显示的文本由L& F确定。 参数: parent - 对话框的父组件,可以为null;有关详细信息,请参阅showDialog 返回: 弹出窗口中文件选择器的返回状态:

  • JFileChooser.CANCEL_OPTION`
  • JFileChooser.APPROVE_OPTION
  • JFileChooser.ERROR_OPTION如果发生错误或对话框被解除

可以在这里找到JavaDoc:

https://docs.oracle.com/javase/7/docs/api/javax/swing/JFileChooser.html#showSaveDialog(java.awt.Component)