java时间显示代码怎么写( 二 )


Date now = new Date();
SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy/MM/dd HH:mm:ss");//可以方便地修改日期格式
String hehe = dateFormat.format( now );
System.out.println(hehe);
Calendar c = Calendar.getInstance();//可以对每个时间域单独修改
5.需要用java编写日历或时钟源代码,时钟----------------
import java.awt.*;
import java.awt.event.*;
import java.util.*;//这两个包你没有导入 至少在你贴进来的代码中没有导入
import java.text.SimpleDateFormat;
public class test extends Frame implements Runnable
{
private Label Labelshow=new Label();
private Panel pan1=new Panel();
public test()
{
super("time");
setup();
setResizable(false); //设置此图形界面是不可以改变大小的
setBounds(400, 200, 200, 400);
add(pan1);//修改1 你没有添加Panel界面会什么都不显示的
pack();
setVisible(true);
}
public void setup()
{
pan1.add(Labelshow);
Thread thread1=new Thread(this);//修改2 Panel没有实现Runnable接口 不能用做线程启动的
thread1.start();
}
public void run()
{
while(true)
{
SimpleDateFormat sdf = new SimpleDateFormat("hh:mm:ss");
Labelshow.setText(sdf.format(new Date()));
try
{
Thread.sleep(1000);
}
catch(Exception e)
{
Labelshow.setText("出错错误,请重启程序");
}
}
}
public static void main(String[] args)
{
test te=new test();
}
}

java时间显示代码怎么写

文章插图