正常情况是用simpleDateformat转date在转String
其他方法
public static void main(String[] args) {
DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
LocalDate localDate = LocalDate.parse("20230619", formatter);//formatter 和字符串格式必须一致
System.out.println(localDate);
}