我netbeans 7.1.1,
用来创建一个 JFrame。我想JFrame
在调用后自动处理 5 秒setVisible()
。我怎样才能做到这一点?
问问题
2753 次
2 回答
3
暗示
使用Swing Timer等待 5 秒,然后再调用setVisible(false)
或dispose()
以任何您希望的方式实现。隐藏/处置
于 2012-11-05T11:38:14.280 回答
0
你研究过这个吗?似乎直截了当。
new Timer().schedule(new TimerTask() {
public void run() {
// this should be final
jframe.dispose();
}
}, 5000);
于 2012-11-05T11:39:14.060 回答