我试着理解“jFileChooser1.showSaveDialog(this) == JFileChooser.APPROVE_OPTION
”这意味着什么?
我认为jFileChooser1.showSaveDialog(this)
会返回SaveDialog
,但JFileChooser.APPROVE_OPTION
会返回yes
或ok
。
他们如何平等?
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());
}
}
答案 0 :(得分:0)
请参阅此API的JavaDocs
public int showSaveDialog(Component parent) throws HeadlessException
弹出"保存文件"文件选择器对话框。请注意,批准按钮中显示的文本由L& F确定。 参数: parent - 对话框的父组件,可以为null;有关详细信息,请参阅showDialog 返回: 弹出窗口中文件选择器的返回状态:
可以在这里找到JavaDoc: