Below code is throwing an exception while parsing the date.
DateFormat df = new SimpleDateFormat("yyyyMMdd-HHmmss");
String timestamp = "20131113-210429";
String suffix;
try {
suffix = df.format(timestamp);
}
Where can i get the list of permissible date formats?