What is this date format? +437432903,96807599067687988281

437432903.96807599067687988281

Translated somehow to November 11, 2014, 4:08pm

, but I'm not sure how to do it.

Edit: context: I'm trying to export data from Thyme , a timer for Mac. It is written to an XML file called storedata

. For example:

<object type="SESSION" id="z102">
    <attribute name="seconds" type="int32">43</attribute>
    <attribute name="minutes" type="int32">10</attribute>
    <attribute name="hours" type="int32">4</attribute>
    <attribute name="date" type="date">437432903.96807599067687988281</attribute>
</object>

      

+3


source to share


1 answer


Apple OS X Objective C Framework Cocoa app has a NSDate date / time class that uses the epoch date of Jan 1, 2001 So the timestamp 437432903.96807599067687988281 when added to Jan 1, 2001 gives the correct date and time: 9:08:23 pm GMT | Tuesday 11 November 2014



+4


source







All Articles