e890. determining if the approve or cancel button was clicked in a jfilechooser dialog.txt
来自「这里面包含了一百多个JAVA源文件」· 文本 代码 · 共 18 行
TXT
18 行
JFileChooser chooser = new JFileChooser();
// Show the dialog; wait until dialog is closed
int result = chooser.showOpenDialog(frame);
// Determine which button was clicked to close the dialog
switch (result) {
case JFileChooser.APPROVE_OPTION:
// Approve (Open or Save) was clicked
break;
case JFileChooser.CANCEL_OPTION:
// Cancel or the close-dialog icon was clicked
break;
case JFileChooser.ERROR_OPTION:
// The selection process did not complete successfully
break;
}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?