0

我无法解决问题。我正在尝试将日期字符串解析2013-05-23T19:00:00GMT-00为 StandardFormat,yyyy-MM-dd'T'HH:mm:ssz但我总是在第 25 位得到 ParseException。

    // Get a human readable format.
    DateFormat dateFormat = DateTime.getStandardFormat();

    // Subtract a full hour from the time passed in.
    final int HOUR_IN_MINUTES = 3600;
    DateTime dateTimeLess1Hour = aDateTime.minus(HOUR_IN_MINUTES, 0);

    // Convert the DateTime, less exactly one hour, to a string.
    String timeLess1String = dateFormat.format(DateTime.toDate(dateTimeLess1Hour));

    // Split the string to distinguish the time part
    String date = timeLess1String.substring(0, 10);
    String time = timeLess1String.substring(11);

    String[] hhMMss = time.split(":");

    String hourOnHourDate = date + "T" + hhMMss[0] + ":00:00" + hhMMss[2].substring(2);

    Date inDateFormat = null;

    // Convert the string into a Date object
    inDateFormat = dateFormat.parse(hourOnHourDate);

    // Convert the Date into a DateTime object.
    return new DateTime(inDateFormat);

错误消息说 Unparseable date: 2013-05-23T19:00:00GMT-00

4

1 回答 1

0

位置 25 表示GMT您尝试使用字母 解析的部分的开头z。如果您确定您的时区将始终为GMT,那么您可以将其作为固定字符串,如下所示:

yyyy-MM-dd'T'HH:mm:ss'GMT'

如果输入的时区会不时变化,则将其分开。

String zone = inputTime.substring(startPosition, endPosition);

zone并使用字符串在单独的行中设置时区

于 2014-11-18T16:38:15.063 回答