java.text.ParseException:无法解析的日期:“”

问题描述 投票:0回答:2
SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss'Z'", Locale.US);
try {
    Date date = df.parse("2014-06-10T13:37:17.744Z");
    dateString = android.text.format.DateFormat.format("MMM d, yyyy, h:mm a", date)
            .toString();
} catch (ParseException e) {
    e.printStackTrace();
}

java.text.ParseException:无法解析的日期:“2014-06-10T13:37:17.744Z”

android date-format
2个回答
3
投票

你还有毫秒:

SimpleDateFormat df = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ", Locale.US);

0
投票

java.time

2014 年 3 月,Java 8 引入了现代的

java.time
日期时间 API,取代了容易出错的旧版
java.util
日期时间 API
。任何新代码都应使用
java.time
API。

使用现代日期时间 API 的解决方案

您的日期时间字符串采用 ISO 8601 格式,这也是

java.time
类型默认使用的格式。因此,您不需要明确使用
DateTimeFormatter
,例如

Instant Instant = java.time.Instant.parse("2014-06-10T13:37:17.744Z");
ZonedDateTime zdt = ZonedDateTime.parse("2014-06-10T13:37:17.744Z");
OffsetDateTime odt = OffsetDateTime.parse("2014-06-10T13:37:17.744Z");

演示:

class Main {
    public static void main(String args[]) {
        Instant Instant = java.time.Instant.parse("2014-06-10T13:37:17.744Z");
        System.out.println(Instant);
    }
}

输出:

2014-06-10T13:37:17.744Z

在线演示

注意: 如果由于某种原因,您需要

java.util.Date
的实例,请让
java.time
API 完成解析日期时间字符串的繁重工作,并将上述代码中的
instant
转换为
java.util.Date
实例使用
Date.from(instant)

Trail:日期时间

了解有关现代日期时间 API 的更多信息
© www.soinside.com 2019 - 2024. All rights reserved.