如何显示弹出窗口

时间:2015-09-04 05:36:32

标签: java popupwindow

我要做的是一个简单的程序,它将文件保存在用户指定的某个位置。我想使用File菜单中的save选项中的ActionListener来执行此操作。我不确定JPopupMenu是否对此有用。有任何想法吗?

1 个答案:

答案 0 :(得分:2)

查看FileChooserDemo.java

相关部分是:

int returnVal = fc.showSaveDialog(FileChooserDemo.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
    File file = fc.getSelectedFile();
    //This is where a real application would save the file.
    log.append("Saving: " + file.getName() + "." + newline);
} else {
    log.append("Save command cancelled by user." + newline);
}