有时钟的多线程

时间:2016-10-30 04:07:58
【文件属性】:

文件名称:有时钟的多线程

文件大小:34KB

文件格式:RAR

更新时间:2016-10-30 04:07:58

多线程

public void run() { JFrame frame = new JFrame(); JLabel label = new JLabel(); Container con = frame.getContentPane(); frame.setBounds(300, 300, 100, 100); frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); String strTime = String.format("%tT", new Date()); label.setText(strTime); label.setFont(new Font("Dialog", Font.BOLD, 30)); con.add(label); frame.setVisible(true); while(true){ strTime = String.format("%tT", new Date()); label.setText(strTime); try{ Thread.sleep(1000); } catch(Exception e){ e.printStackTrace(); } } }


【文件预览】:
多线程
----图.doc(22KB)
----ThreadGUI()
--------bin()
--------.settings()
--------src()
--------.project(385B)
--------.classpath(301B)
----GradeBook.mdb(248KB)

网友评论