如何将Date转换为DateTime或LocalDate Joda

时间:2014-03-12 08:40:10

标签: java datetime jodatime iso8601

我对这个问题已经两天了。这是从这个问题继续:convert string to joda datetime gets stuck

我正在尝试执行一个简单的任务,获取SQL SERVER ISO 8601字符串并将其转换为DateTime或LocalDate。我尝试了所有的东西,但是当涉及到调试器的实际转换时,程序光标只是用于思考并且永远不会回来,即程序停留在那里。

我非常绝望,我甚至试图将该字符串转换为日期(有效!),然后将该日期转换为DateTime或LocalDate。所有都有相同的结果,在转换线上程序看起来像陷入了一些无限循环(风扇开始像疯了一样工作)。

这是我这么简单的功能:

    public static LocalDate SQLServerIso8601StringToLocalDate(String date) {

        LocalDate dateToReturn = null;
        DateFormat df = new SimpleDateFormat(CONSTS_APP_GENERAL.SQL_SERVER_DATE_FORMAT);
        try {
            Date tempDate = (Date) df.parse(date);
            DateTime dt = new DateTime(tempDate);
            dateToReturn = new LocalDate(tempDate);

        } catch (ParseException e) {
            // strToReturn = strSqlDate;
        }
        return dateToReturn;

/*      
        date = date.replace('T', ' ');
        return SimpleIso8601StringToDateTime(date);
*/
        //return LocalDate.parse(date, DateTimeFormat.forPattern(CONSTS_APP_GENERAL.SQL_SERVER_DATE_FORMAT));

/*      DateTimeFormatter df = DateTimeFormat.forPattern(CONSTS_APP_GENERAL.SQL_SERVER_DATE_FORMAT_WITH_TZ);
        return df.parseDateTime(date);
*/  }

这是我的字符串:2014-01-01T00:00:00

也:

public static final String SQL_SERVER_DATE_FORMAT = "yyyy-MM-dd'T'HH:mm:ss";

有什么想法吗?

1 个答案:

答案 0 :(得分:1)

public static Date getDateFromString(String format, String dateStr) {
    DateFormat formatter = new SimpleDateFormat(format);
    Date date = null;
    try {
        date = (Date) formatter.parse(dateStr);
    } catch (ParseException e) {
        e.printStackTrace();
    }

    return date;
}