将 Year 字段的日期转换为两位数字时出错
Error converting date with two digits for the Year field
// input format: dd/MM/yy
SimpleDateFormat parser = new SimpleDateFormat("dd/MM/yy");
// output format: yyyy-MM-dd
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(formatter.format(parser.parse("12/1/20"))); // 0020-11-01
我正在使用上面的代码,但它给我的年份是“0020”而不是“2020”。
大多数 Java 开发人员会想回答 SimpleDateFormat 但它不是线程安全的。
所以我推荐你使用Java 8 DateFormat。
假设您当前的日期是 String:
DateFormat dateFormat = new DateFormat("yyyy-MM-dd") ;
String dateString ="20/4/20";
LocalDate date = LocalDate.parse(dateString, dateFormat);
如果您使用少于 Java 8,则使用 joda time 相同 类。
将其转换为日期对象后,使用所需格式并使用 LocalDate。
format(date, new DateFormat("yyyy-MM-dd")) ;
为此使用 java.time
:
public static void main(String[] args) {
String dateString = "12/1/20";
LocalDate localDate = LocalDate.parse(dateString, DateTimeFormatter.ofPattern("dd/M/yy"));
System.out.println(localDate.format(DateTimeFormatter.ISO_LOCAL_DATE));
}
输出为
2020-01-12
注意模式中 M
的数量,您不能在此处使用双 M
解析包含一个月的单个数字的 String
。
// input format: dd/MM/yy
SimpleDateFormat parser = new SimpleDateFormat("dd/MM/yy");
// output format: yyyy-MM-dd
SimpleDateFormat formatter = new SimpleDateFormat("yyyy-MM-dd");
System.out.println(formatter.format(parser.parse("12/1/20"))); // 0020-11-01
我正在使用上面的代码,但它给我的年份是“0020”而不是“2020”。
大多数 Java 开发人员会想回答 SimpleDateFormat 但它不是线程安全的。
所以我推荐你使用Java 8 DateFormat。
假设您当前的日期是 String:
DateFormat dateFormat = new DateFormat("yyyy-MM-dd") ;
String dateString ="20/4/20";
LocalDate date = LocalDate.parse(dateString, dateFormat);
如果您使用少于 Java 8,则使用 joda time 相同 类。 将其转换为日期对象后,使用所需格式并使用 LocalDate。
format(date, new DateFormat("yyyy-MM-dd")) ;
为此使用 java.time
:
public static void main(String[] args) {
String dateString = "12/1/20";
LocalDate localDate = LocalDate.parse(dateString, DateTimeFormatter.ofPattern("dd/M/yy"));
System.out.println(localDate.format(DateTimeFormatter.ISO_LOCAL_DATE));
}
输出为
2020-01-12
注意模式中 M
的数量,您不能在此处使用双 M
解析包含一个月的单个数字的 String
。