我在使用 Java 将 dd/MM/yyyy 格式日期转换为 ccyy/MM/dd 时遇到问题。有人可以帮我解决这个问题吗?如果我有一些例子,那就太好了。
这是我的代码##示例##
SimpleDateFormat dateFormat1 = new SimpleDateFormat("ddMMyyyy");
Date date1 = new Date();
LocalDate date = DateTimeFormat.forPattern("ddMMyyyy").parseLocalDate(dateFormat1.format(date1));
System.out.println("Century=" + date.getCenturyOfEra());
String usFormat = DateTimeFormat.forPattern("ccyy/MM/dd").print(date);
System.out.println(usFormat);
提前致谢。
相关分类