Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Users
  • Groups
  • Search
  • Get Qt Extensions
  • Unsolved
Collapse
Brand Logo
  1. Home
  2. Qt Development
  3. General and Desktop
  4. Convert GMT DateTime to local
Forum Updated to NodeBB v4.3 + New Features

Convert GMT DateTime to local

Scheduled Pinned Locked Moved Unsolved General and Desktop
3 Posts 3 Posters 273 Views
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • P Offline
    P Offline
    pprevautel
    wrote on last edited by
    #1

    Hi, when I get response from HTTP server and I would like to convert date in header (Ex: Mon, 27 Mar 2023 07:06:09 GMT) to local date
    2023-03-27 09:06:20.

    How to do it ?

    Thanks

    JonBJ 1 Reply Last reply
    0
    • P pprevautel

      Hi, when I get response from HTTP server and I would like to convert date in header (Ex: Mon, 27 Mar 2023 07:06:09 GMT) to local date
      2023-03-27 09:06:20.

      How to do it ?

      Thanks

      JonBJ Offline
      JonBJ Offline
      JonB
      wrote on last edited by JonB
      #2

      @pprevautel
      Use a suitable method from QDateTime Class to parse the string (maybe fromString()?) and access e.g. toLocalTime() to convert to local time or output as a string (toString()?).

      C 1 Reply Last reply
      2
      • JonBJ JonB

        @pprevautel
        Use a suitable method from QDateTime Class to parse the string (maybe fromString()?) and access e.g. toLocalTime() to convert to local time or output as a string (toString()?).

        C Offline
        C Offline
        ChrisW67
        wrote on last edited by
        #3

        This may get an actual date object to work with:

        QDateTime date = QDateTime::fromString("Mon, 27 Mar 2023 07:06:09 GMT", Qt::RFC2822Date);
        

        A little unclear if "GMT" is acceptable. If not, do a string substitution "GMT" => "+0000" first.

        1 Reply Last reply
        0

        • Login

        • Login or register to search.
        • First post
          Last post
        0
        • Categories
        • Recent
        • Tags
        • Popular
        • Users
        • Groups
        • Search
        • Get Qt Extensions
        • Unsolved