I am running the following code:
DateFormat fullDate = new SimpleDateFormat("HHmmdd/MMMyy");
Date date = fullDate.parse("035627/NOV15");
and the following exception is thrown:
Exception in thread "main" java.text.ParseException: Unparseable date:"035627/NOV15
Any ideas, why the exception is thrown, while the format is validly stated?