如何设置Jframe 5秒

时间:2012-11-05 11:27:36

标签: java swing jframe

我正在使用netbeans 7.1.1,来创建JFrame。我想在调用JFrame后自动处理setVisible() 5秒。我怎么能这样做?

2 个答案:

答案 0 :(得分:3)

HINT

使用Swing Timer等待5秒钟,然后按照您希望的方式调用setVisible(false)dispose()。隐藏/弃置

答案 1 :(得分:0)

你对此有所研究吗?似乎直截了当。

new Timer().schedule(new TimerTask() {
    public void run() {
          // this should be final
          jframe.dispose();
    }
}, 5000);