码迷,mamicode.com
首页 > 其他好文 > 详细

获取当前系统时间工具类TimeUtils

时间:2018-09-26 17:06:05      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:系统时间   size   time   span   pac   local   color   new   util   

TimeUtils:

 

package com.duocy.util;

 


import java.time.LocalDateTime;
import java.time.format.DateTimeFormatter;

 

public class TimeUtils {

 

/* public static String getTime() {
Date date = new Date();
SimpleDateFormat dateFormat= new SimpleDateFormat("yyyy/MM/dd hh:mm:ss");
String dt=dateFormat.format(date);
System.out.println("当前系统时间:"+dt);
return dt;
}*/
public static String getTime() {
DateTimeFormatter df = DateTimeFormatter.ofPattern("yyyyMMddHHmmss");
LocalDateTime time = LocalDateTime.now();
String localTime = df.format(time);
System.out.println(localTime);
return localTime;
}

}

 

个人记录之用!

 

获取当前系统时间工具类TimeUtils

标签:系统时间   size   time   span   pac   local   color   new   util   

原文地址:https://www.cnblogs.com/juzijiang/p/9707636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!