package untitled1;
import java.awt.BorderLayout;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.*;
import javax.swing.*;
import java.util.Date;
import java.text.SimpleDateFormat;
public class Frame2 extends JFrame implements Runnable{
Thread a=new Thread();
public Frame2() {
try {
jbInit();
} catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
getContentPane().setLayout(null);
jLabel1.setBorder(BorderFactory.createLineBorder(Color.black));
jLabel1.setText("");
jLabel1.setBounds(new Rectangle(19, 35, 221, 29));
this.getContentPane().add(jLabel1);
a.start();
}
public void run(){
while(true){
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
}
Date d = new Date();//得到系统当前时间
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String timeB = sf.format(d);//得到指定格式的时间
jLabel1.setText(timeB);
}
}
JLabel jLabel1 = new JLabel();
}
请问我的jLabel1中为什么不能动态显示时间
----------------解决方案--------------------------------------------------------
知道哪里有问题了 Thread a=new Thread(this);
加个this就行了 可是为什么呢 请高手指点
----------------解决方案--------------------------------------------------------
线程有运行起来吗??
----------------解决方案--------------------------------------------------------
知道哪里有问题了 Thread a=new Thread(this);
加个this就行了 可是为什么呢 请高手指点
你随便new一个Thread对象,没有传入Runnable接口给它,它怎么知道要run什么呢?
默认Thread里面的run方法是一个空的run方法,所以你直接构造一个然后再运行,是什么都不会发生的,一个线程刚刚创建就被销毁了
而你把this传给它,是因为this是实现了Runnable接口的,所以线程起动后,将执行你自己定义的run方法
----------------解决方案--------------------------------------------------------
多谢版主指教 我了解了
----------------解决方案--------------------------------------------------------
你那个还要加个显示窗口的和一个main函数 不然怎么让子程序运行呢? 完整的代码应该是这样:
package untitled1;
import javax.swing.JFrame;
import javax.swing.JLabel;
import java.awt.*;
import javax.swing.*;
import java.util.Date;
import java.text.SimpleDateFormat;
public class Frame2 extends JFrame implements Runnable{
Thread a=new Thread(this);
public Frame2 () {
setSize( 400 , 400 );
setVisible( true );
setDefaultCloseOperation( EXIT_ON_CLOSE );//显示窗口的
try {
jbInit();
} catch (Exception exception) {
exception.printStackTrace();
}
}
private void jbInit() throws Exception {
getContentPane().setLayout(null);
jLabel1.setBorder(BorderFactory.createLineBorder(Color.black));
jLabel1.setText("");
jLabel1.setBounds(new Rectangle(19, 35, 221, 29));
this.getContentPane().add(jLabel1);
a.start();
}
public void run(){
while(true){
try {
Thread.sleep(1000);
} catch (InterruptedException ex) {
}
Date d = new Date();//得到系统当前时间
SimpleDateFormat sf = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
String timeB = sf.format(d);//得到指定格式的时间
jLabel1.setText(timeB);
}
}
JLabel jLabel1 = new JLabel();
public static void main( String[] args){
Frame2 show = new Frame2();
}//加个main
}
----------------解决方案--------------------------------------------------------