我有字符串"1/28/2013 3:26:51 PM"
SimpleDateFormat formatter = new SimpleDateFormat("M/dd/yyyy h:mm:ss a");
try {
this.createDate = formatter.parse(xmlPhoto.getCreateDate());
this.shootDate = formatter.parse(xmlPhoto.getShootDate());
} catch (ParseException e) {
e.printStackTrace();
}
我想从这个字符串中创建一个日期对象,但我得到一个ParseExceprion
和偏移量 = 19。