vote up 2 vote down star
1

I'm using Qt to parse an XML file which contains timestamps in UTC. Within the program, of course, I'd like them to change to local time. In the XML file, the timestamps look like this: "2009-07-30T00:32:00Z".

Unfortunately, when using the QDateTime::fromString() method, these timestamps are interpreted as being in the local timezone. The hacky way to solve this is to add or subtract the correct timezone offset from this time to convert it to "true" local time. However, is there any way to make Qt realize that I am importing a UTC timestamp and then automatically convert it to local time?

flag

2 Answers

vote up 5 vote down check

Do it like this:

QDateTime timestamp = QDateTime::fromString(thestring);
timestamp.setTimeSpec(Qt::UTC); // mark the timestamp as UTC (but don't convert it)
timestamp = timestamp.toLocalTime() // convert to local time
link|flag
Exactly what I was looking for. I actually got very close, I used the Qt::LocalTime time spec and expected it to convert. – spectre256 Aug 4 at 7:05
vote up 1 vote down

try using the setTime_t function.

link|flag
Here is the Qt4 version; doc.trolltech.com/4.5/qdatetime.html#setTime_t/… Upmodding parent for the good answer btw! – cartman Aug 4 at 6:51
Sorry, did a google search and that is the one I found. Didn't check version. Fixed in edit – Marius Aug 4 at 6:52

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.