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"));
}
}
测试工具方法,查看结果: