当前位置: 代码迷 >> Java相关 >> [求助]java动态时间
  详细解决方案

[求助]java动态时间

热度:301   发布时间:2007-09-01 09:27:00.0
[求助]java动态时间

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中为什么不能动态显示时间

搜索更多相关的解决方案: java  动态  时间  

----------------解决方案--------------------------------------------------------
知道哪里有问题了 Thread a=new Thread(this);
加个this就行了 可是为什么呢 请高手指点
----------------解决方案--------------------------------------------------------
线程有运行起来吗??
----------------解决方案--------------------------------------------------------
以下是引用非凡DZ在2007-9-1 9:40:24的发言:
知道哪里有问题了 Thread a=new Thread(this);
加个this就行了 可是为什么呢 请高手指点

你随便new一个Thread对象,没有传入Runnable接口给它,它怎么知道要run什么呢?

默认Thread里面的run方法是一个空的run方法,所以你直接构造一个然后再运行,是什么都不会发生的,一个线程刚刚创建就被销毁了

而你把this传给它,是因为this是实现了Runnable接口的,所以线程起动后,将执行你自己定义的run方法


----------------解决方案--------------------------------------------------------

多谢版主指教 我了解了


----------------解决方案--------------------------------------------------------
回复:(非凡DZ)[求助]java动态时间

你那个还要加个显示窗口的和一个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
}


----------------解决方案--------------------------------------------------------
  相关解决方案