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