1 package com.review; 2 3 import java.text.SimpleDateFormat; 4 import java.util.Date; 5 6 /** 7 * @program: com.review 8 * @description: 9 * @author: Mr.Lin 10 * @create: 2019年8月14日 11 **/ 12 public class Time05 { 13 public static void main(String[] args) { 14 while(true) { 15 //获取当前时间 16 Date date = new Date(); 17 //创建时间格式 18 SimpleDateFormat sdf = new SimpleDateFormat("HH:mm:ss"); 19 //输出时间 20 System.out.println(sdf.format(date)); 21 try { 22 //主线程沉睡1000毫秒后再继续循环 23 Thread.sleep(1000); 24 }catch (InterruptedException e) { 25 e.printStackTrace(); 26 } 27 } 28 } 29 30 }
原文:https://www.cnblogs.com/lpbk/p/11352848.html