Tanggal Konversi Yymmdd


LocalDate date = LocalDate.now();
  DateTimeFormatter formatter = DateTimeFormatter.ofPattern("yyyyMMdd");
Nutty Newt