I am getting parse exception while running the below code, Is there anything wrong in the format ?
try {
String Resolved= "17-04-2015 03:54" ;
Date date = new SimpleDateFormat("dd-MM-yyyy HH:mm:ss z").parse(Resolved);
} catch (ParseException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}