如何将此日期格式解析为我的意思Mon May 14 2010 00:00:00 GMT+0100 (Afr. centrale Ouest)
的日期格式05-14-2010
mm-dd-yyyy
它告诉我这个错误:
java.text.ParseException: Unparseable date: "Mon May 14 2010 00:00:00 GMT+0100 (Afr. centrale Ouest)"
编辑
SimpleDateFormat formatter = new SimpleDateFormat("M-d-yyyy");
newFirstDate = formatter.parse(""+vo.getFirstDate()); //here the error
提前致谢!