gpt4 book ai didi

java - 如何显示弹出窗口

转载 作者:行者123 更新时间:2023-12-02 04:24:22 25 4
gpt4 key购买 nike

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

最佳答案

看看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);
}

关于java - 如何显示弹出窗口,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32390786/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com