Top "Iso8601" questions

ISO 8601 is the International Standards Organization's standard for representing time as a string.

Understanding specific UTC time format YYYY-MM-DDTHH:MM:SS.SSSZ

I have two related questions. Assume a program running in BST generates a date time value for current time in …

java utc iso8601 gmt
ISO 8601 with milliseconds and Retrofit

I cannot set properly the date format when using retrofit and trying to read a date like this: 2015-08-29…

java android date gson iso8601
MySQL insert to DATETIME: is it safe to use ISO::8601 format?

In our project we use Zend Framework Model generator, which produces something like this to set the properties that are …

mysql datetime iso8601
Java Time Zone When Parsing DateFormat

I had code that parses date as follows: String ALT_DATE_TIME_FORMAT = "yyyy-MM-dd'T'HH:mm:ss.SSSZ"; SimpleDateFormat sdf = new …

java datetime timezone date-format iso8601
Turn postgres date representation into ISO 8601 string

I'm trying to format a Postgres date representation into a ISO 8601 string. I'm assuming that there is a Postgres function …

postgresql date elixir iso8601 ecto
Converting ISO 8601 date time to seconds in Python

I am trying to add two times together. The ISO 8601 time stamp is '1984-06-02T19:05:00.000Z', and I …

python python-2.7 time iso8601 rfc3339
Is there a simple way of converting an ISO8601 timestamp to a formatted NSDate?

If I use the following code: NSDateFormatter *dateFormatter = [[NSDateFormatter alloc] init]; [dateFormatter setDateFormat:@"yyyy-MM-dd'T'HH:mm"]; NSDate *myDate = [dateFormatter dateFromString:@"2010-01…

objective-c nsdate nsdateformatter iso8601
Java 8 Date and Time: parse ISO 8601 string without colon in offset

We try to parse the following ISO 8601 DateTime String with timezone offset: final String input = "2022-03-17T23:00:00.000+0000"; OffsetDateTime.parse(…

java datetime iso8601 timezone-offset datetime-parsing
Sort array by ISO 8601 date

how can i sort this array by date (ISO 8601)? var myArray = new Array(); myArray[0] = { name:'oldest', date:'2007-01-17…

javascript arrays sorting iso8601
How do I store an UTC ISO8601 date in a MySQL database?

I have thousands of dates in the following format: 2011-10-02T23:25:42Z (aka ISO 8601 in UTC) What MySQL data …

php mysql date date-format iso8601