LocalDate 工具类
Posted mrrightzhao
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LocalDate 工具类相关的知识,希望对你有一定的参考价值。
package com.eastrobot.robotdev.utils;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
public class DateUtils {
DateTimeFormatter yearPattern = DateTimeFormatter.ofPattern("yyyy年MM月dd日");
DateTimeFormatter timePattern = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
//1.String 转换成 LocalDate
public LocalDate stringTolocalDate(String date){
return LocalDate.parse(date);
}
/**
* String --> String
* 2019-12-20 转换成2019年12月20日
* @param date
* @return
* @date 2019年12月24日上午11:08:10
*/
public String stringToLocalDateTime(String date){
return LocalDate.parse(date).format(yearPattern);
}
}
以上是关于LocalDate 工具类的主要内容,如果未能解决你的问题,请参考以下文章
JDK1.8 LocalDate 使用方式;LocalDate 封装Util,LocalDate工具类
Java8之 LocalDate,LocalDateTime和处理时间日期工具类一网打尽