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.Lin10 * @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 }