Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这会引发无效格式异常:
DateTimeFormat.forPattern("%E, %d %M %Y %H:%m:%s %z").parseMillis("Sun, 20 May 2012 01:07:11 +0000")
为什么它不起作用?根据规范,它似乎应该工作。
这是因为你的z参数是错误的。例如,它应该是 PST。将其大写(使用Z)或更改输入字符串。
z
Z
我认为模式应该更像:
EEE, dd MMM YYYY HH:mm:ss Z