java 时间现格式为00:00:00开始计时,如何表示
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了java 时间现格式为00:00:00开始计时,如何表示相关的知识,希望对你有一定的参考价值。
java 时间现格式为00:00:00开始计时,如何表示
要做计时器 是秒开始 这个时间格式事?
import java.awt.event.ActionEvent;
import java.awt.event.ActionListener;
import java.text.SimpleDateFormat;
import java.util.Date;
import javax.swing.JFrame;
import javax.swing.JLabel;
import javax.swing.Timer;
public class Test extends JFrame
JLabel lbl=new JLabel();
Date now=new Date();
public Test()
now.setHours(0);
now.setMinutes(0);
now.setSeconds(0);
Timer timer=new Timer(1000,new ActionListener()
public void actionPerformed(ActionEvent e)
Date now2=new Date(now.getTime()+1000);
now=now2;
SimpleDateFormat formatter = new SimpleDateFormat("HH:mm:ss");
lbl.setText(formatter.format(now));
);
timer.start();
this.setLayout(new FlowLayout());
this.add(lbl);
this.setSize(300,200);
this.setVisible(true);
public static void main(String[] args)
Test t=new Test();
本回答被提问者采纳 参考技术B class DateTest
public static void main(String[] args)
Calendar date = Calendar.getInstance();
SimpleDateFormat formatter = new SimpleDateFormat("yyyy:MM:dd");
System.out.println(formatter.format(date.getTime()));
以上是关于java 时间现格式为00:00:00开始计时,如何表示的主要内容,如果未能解决你的问题,请参考以下文章