我的代码中有错误,我用yyyy-mm-dd写日期格式,但是mm中有错误,因此如何将其转换为yyyy-MM-dd
Date currentDate = new Date (date);
SimpleDateFormat dateFormat = new SimpleDateFormat("YYYY-MM-dd");
return dateFormat.format(currentDate);
DateTimeFormatter formatter = DateTimeFormat.forPattern("yyyy-mm-dd");
return formatter.parseDateTime(date).getMillis();
}
01中的所有月份如何转换为正确的月份