当FileDialog实例改变状态时,是否可以接收回调事件。 例如,如果用户点击取消,我会收到一个通知,这是听取的可选项。
只是问,因为我习惯于客观c,而且我有点像这是如何工作的。
答案 0 :(得分:1)
查看JFileChooser
。show *方法。如果需要,您可以自己调用这样的回调:
public void actionPerformed(ActionEvent e) {
//Handle open button action.
if (e.getSource() == openButton) {
int returnVal = fc.showOpenDialog(FileChooserDemo.this);
if (returnVal == JFileChooser.APPROVE_OPTION) {
File file = fc.getSelectedFile();
//This is where a real application would open the file.
log.append("Opening: " + file.getName() + "." + newline);
} else {
log.append("Open command cancelled by user." + newline);
// ... call your cancel callback here ...
}
} ...
}
http://docs.oracle.com/javase/tutorial/uiswing/components/filechooser.html