2

例如,我正在从 Azure 中检索 JSON 并接收日期1900-01-01T16:00:00.000Z。现在是 JSONObject 的这一部分,但我如何正确地将其解析为 Java 日期格式?

感谢您的任何想法

4

1 回答 1

1

将日期作为来自 Json 的字符串,然后使用SimpleDateFormat对其进行解析:

SimpleDateFormat sdf=new SimpleDateFormat("/*Look at the API for the format*/");
Date jsonDate= sdf.parse(/*Date as String from your JSON*/);

要找到正确的格式,您可以查看这个问题simpledateformat parsing date with 'Z' literal

于 2013-08-13T18:20:02.720 回答