我在 Java 中有一个字符串,它是一个日期,但格式如下:
02122012
我需要将其重新格式化为2012年 2 月 12 日如何做到这一点。
使用以下代码,我不断返回java.text.SimpleDateFormat@d936eac0
下面是我的代码..
public static void main(String[] args) {
// Make a String that has a date in it, with MEDIUM date format
// and SHORT time format.
String dateString = "02152012";
SimpleDateFormat input = new SimpleDateFormat("ddMMyyyy");
SimpleDateFormat output = new SimpleDateFormat("dd/MM/yyyy");
try {
output.format(input.parse(dateString));
} catch (Exception e) {
}
System.out.println(output.toString());
}