java8、jdk8日期转化成字符串详解
更新时间:2019年04月14日 15:35:04 投稿:laozhang
在本篇文章中小编给大家整理了关于java8、jdk8日期转化成字符串的相关知识点和代码,需要的朋友们学习下。
java8、jdk8日期转化成字符串
新建日期工具类:DateUtils
新建方法:parseDate
实现方法parseDate
public static String parseDate(LocalDate localDate,String pattern) { DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(pattern); return localDate.format(dateTimeFormatter); }
在main方法编写测试:
public static void main(String[] args) { System.out.print(parseDate(LocalDate.now(),"yyyy-MM-dd")); }
这个工具类代码如下:
package com.gwolf; import java.time.LocalDate; import java.time.format.DateTimeFormatter; public class DateUtils { public static String parseDate(LocalDate localDate,String pattern) { DateTimeFormatter dateTimeFormatter = DateTimeFormatter.ofPattern(pattern); return localDate.format(dateTimeFormatter); } public static void main(String[] args) { System.out.print(parseDate(LocalDate.now(),"yyyy-MM-dd")); } }
测试工具方法,查看结果:
相关文章
使用SpringBoot+OkHttp+fastjson实现Github的OAuth第三方登录
这篇文章主要介绍了使用SpringBoot+OkHttp+fastjson实现Github的OAuth第三方登录,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2020-02-02启动springboot项目时报错:无法访问org.springframework.web.bind.annotatio
这篇文章给大家分享了启动springboot项目时报错:无法访问org.springframework.web.bind.annotation.GetMapping …具有错误的版本 61.0,应为52.0的解决方案,文中通过图文介绍的非常详细,需要的朋友可以参考下2023-10-10
最新评论