Here is an example:
public MyDate() throws ParseException {
SimpleDateFormat sdf = new SimpleDateFormat("yyyy/MM/d");
sdf.setLenient(false);
String t1 = "2011/12/12aaa";
System.out.println(sdf.parse(t1));
}
2011/12/12aaaa is not a valid date format. However the function print Mon Dec 12 00:00:00 PST 2011 and the ParseException doesn't be thrown.
Can any one tell me how to let SimpleDateFormat treat 2011/12/12aaa as an invalid date format?