我正在尝试关闭 JFileChooser。请您告诉我为什么以下代码段中的 cancelSelection 方法在 5 秒后没有使其消失:
public static void main(String [] args){
JFrame frame = new JFrame();
frame.setVisible(true);
final JFileChooser fchooser = new JFileChooser();
fchooser.showOpenDialog(frame);
try {Thread.sleep(5000);} catch (Exception e){}
fchooser.cancelSelection();
}
任何帮助深表感谢。