JOptionPane是/否选项确认对话框问题

时间:2011-12-31 16:14:36

标签: java swing jfilechooser

我创建了一个JOptionPane,它只有两个按钮YES_NO_OPTION

弹出JOptionPane.showConfirmDialog后,我想点击YES BUTTON继续打开JFileChooser,如果点击NO BUTTON,则会取消操作。

看起来很容易,但我不确定我的错误在哪里。

代码段:

if (textArea.getLineCount() >= 1) {  //The condition to show the dialog if there is text inside the textArea

    int dialogButton = JOptionPane.YES_NO_OPTION;
    JOptionPane.showConfirmDialog (null, "Would You Like to Save your Previous Note First?","Warning",dialogButton);

    if (dialogButton == JOptionPane.YES_OPTION) { //The ISSUE is here

    JFileChooser saveFile = new JFileChooser();
    int saveOption = saveFile.showSaveDialog(frame);
    if(saveOption == JFileChooser.APPROVE_OPTION) {

    try {
        BufferedWriter fileWriter = new BufferedWriter(new FileWriter(saveFile.getSelectedFile().getPath()));
        fileWriter.write(textArea.getText());
        fileWriter.close();
    } catch(Exception ex) {

    }
}

3 个答案:

答案 0 :(得分:103)

您需要查看对showConfirmDialog的调用的返回值。即:

int dialogResult = JOptionPane.showConfirmDialog (null, "Would You Like to Save your Previous Note First?","Warning",dialogButton);
if(dialogResult == JOptionPane.YES_OPTION){
  // Saving code here
}

您正在对dialogButton进行测试,您正在使用它来设置对话框应显示的按钮,而且此变量从未更新过 - 所以dialogButton永远不会是JOptionPane.YES_NO_OPTION以外的任何内容{1}}。

根据showConfirmDialog的Javadoc:

  

返回:一个整数,指示用户选择的选项

答案 1 :(得分:32)

试试这个,

int dialogButton = JOptionPane.YES_NO_OPTION;
int dialogResult = JOptionPane.showConfirmDialog(this, "Your Message", "Title on Box", dialogButton);
if(dialogResult == 0) {
  System.out.println("Yes option");
} else {
  System.out.println("No Option");
} 

答案 2 :(得分:6)

int opcion = JOptionPane.showConfirmDialog(null, "Realmente deseas salir?", "Aviso", JOptionPane.YES_NO_OPTION);

if (opcion == 0) { //The ISSUE is here
   System.out.print("si");
} else {
   System.out.print("no");
}