日付であるが次のようにフォーマットされた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());
}