如何在延迟2秒后用另一个JFrame调用JFrame ?


new SplashDemoGUI().setVisible(true);
try {
    Thread.sleep(2000);
    new sample().setVisible(true);
} catch (InterruptedException ex) {
}

也许有人能帮帮我,我已经把它放到公共领域了

new java.util.Timer().schedule( 
    new java.util.TimerTask() {
        @Override
        public void run() {
            new sample().setVisible(true);
        }
    }, 
    2000 
);

这个应该可以。

编辑

JFrame暗示Swing,因此Swing Timer似乎是合适的。- PM 77

相关内容

  • 没有找到相关文章