我正在以这种格式获取日期,14-MAY-13 01.17.16.250000 PM
并且
SimpleDateFormat simpleDateFormat = new SimpleDateFormat("dd-MMM-yy hh:mm:ss aaa");
simpleDateFormat.parse("14-MAY-13 01.17.16.250000 PM")
给了我这个例外
java.text.ParseException: Unparseable date: "14-MAY-13 01.17.16.250000 PM"
..simpledateformat的格式应该是什么?