展开全部
用线程可以实现
新建一个线程,去呈现文字e5a48de588b662616964757a686964616f31333337623464,规定的时间结束后import javax.swing.JFrame;
import javax.swing.JLabel;
public class NewFrame extends JFrame {
private JLabel jl;
public NewFrame() {
jl = new JLabel();
add(jl);
setSize(500, 500);
setLocation(300, 200);
setDefaultCloseOperation(EXIT_ON_CLOSE);
setVisible(true);
Thread t = new Thread(new Runnable() {
@Override
public void run() {
jl.setText("呈现文字.5秒后消失");
try {
Thread.sleep(5000);//该线程睡眠5秒
} catch (InterruptedException ex) {
}
jl.setText("");//清空文字
}
});
t.start();//启动线程
}
public static void main(String[] args) {
new NewFrame();
}
}