I am trying to convert numeric string value in to date.
My code is
String input = "1537011000";
Date d = new SimpleDateFormat("ddMMMM").parse(input);
String output = new SimpleDateFormat("MMMM dd, yyyy").format(d);
System.out.println("output = " + output);
**but I'm not able to convert. I'm getting an Exception:
Unparseable date: "1537011000"
Expected result is 15th September