I'm trying to convert the modified time to a human readable value, so I need to know the date/time base of the field.
I'm trying to convert the modified time to a human readable value, so I need to know the date/time base of the field.
Times as returned through our APIs are milliseconds since 1970, but only with second accuracy. If you are using Java, you can feed it as a long value into a Date
object and then into DateFormat
or SimpleDateFormat
.
No one has followed this question yet.