...
Code Block | ||
---|---|---|
| ||
Date date = .. StringDateFormat rfc3339Daterfc3339Format = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSSZ"); rfc3339Format.setTimeZone(TimeZone.getTimeZone("UTC")); String rfc3339Date = rfc3339Format.format(date); |
...
Client → Server: ISO 8601
...