Jadira月不正确

时间:2014-11-18 13:08:33

标签: date jodatime

我有一个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

感谢,

1 个答案:

答案 0 :(得分:1)

m 代表分钟 M 代表年份。请先研究Joda-Time使用的javadoc格式符号。