获取当前系统时间工具类TimeUtils
Posted juzijiang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取当前系统时间工具类TimeUtils相关的知识,希望对你有一定的参考价值。
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的主要内容,如果未能解决你的问题,请参考以下文章