I have a String in Java which is a date but is formatted like:
02122012
I need to reformat it to look like 02/12/2012 how can this be done.
With the following code I keep getting back java.text.SimpleDateFormat@d936eac0
Below is my code..
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());
}