大家好,我是小百,我来为大家解答以上问题。java获取当前时间戳,java获取当前时间很多人还不知道,现在让我们一起来看看吧!
1、使用线程或计时器
2、public class SomeTest {
3、 public static void main(String[] args) {
4、 // 第一种方式
5、// CurrentTime ct = new CurrentTime();
6、// ct.run();
7、 // 第二种方式
8、 Timer t = new Timer();
9、 t.scheduleAtFixedRate(new NowTime(), new Date(), 1000);
10、 }
11、}
12、class CurrentTime extends Thread{
13、 public void run() {
14、 while (true) {
15、 SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
16、 System.out.println(f.format(new Date()));
17、 try {
18、 Thread.sleep(1000);
19、 } catch (InterruptedException e) {
20、 e.printStackTrace();
21、 }
22、 }
23、 }
24、}
25、class NowTime extends TimerTask {
26、 public void run() {
27、 SimpleDateFormat f = new SimpleDateFormat("yyyy-MM-dd hh:mm:ss");
28、 System.out.println(f.format(new Date()));
29、 }
30、}
本文到此讲解完毕了,希望对大家有帮助。