【发布时间】:2012-01-31 03:02:10
【问题描述】:
我创建了一个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) {
}
}
【问题讨论】:
标签: java swing jfilechooser