我有一个DateOperations类,就是这样。
public static Date formatInputToDate(String input,String pattern){
LocalDateTime localDateTime = LocalDateTime.parse(input, DateTimeFormat.forPattern(pattern));
return new Date(localDateTime.toDate().getTime());
}
当我从LocalDateTime类开始构造toString(“yy-mm-dd hh:mm:ss”)后,我得到的返回日期格式为“14-32-18 06:32:00”上面的方法。请告诉我错误。 输入是11/18/2014,模式是mm / dd / yy
感谢,