"If a worker wants to do his job well, he must first sharpen his tools." - Confucius, "The Analects of Confucius. Lu Linggong"
Front page > Programming > How to Safely Parse Unix Timestamps in Go?

How to Safely Parse Unix Timestamps in Go?

Posted on 2025-02-08
Browse:588

How to Safely Parse Unix Timestamps in Go?

How to Parse Unix Timestamps

Parsing Unix timestamps in Go may seem like a simple task, but it can lead to unexpected errors. When attempting to parse a timestamp using time.Parse, you may encounter an out of range error even if the layout appears to be correct.

The reason for this is that time.Parse does not handle Unix timestamps. Instead, you should use the strconv.ParseInt function to convert the timestamp string to an int64 and then use the time.Unix function to create a time.Time object.

Here's an example:

package main

import (
    "fmt"
    "time"
    "strconv"
)

func main() {
    i, err := strconv.ParseInt("1405544146", 10, 64)
    if err != nil {
        panic(err)
    }
    tm := time.Unix(i, 0)
    fmt.Println(tm)
}

This code will output the correct timestamp:

2014-07-16 20:55:46  0000 UTC

Important Note:

In the original example, strconv.Atoi was used instead of strconv.ParseInt. However, strconv.Atoi can result in integer overflows on 32-bit systems. Therefore, strconv.ParseInt is recommended to handle all cases safely.

Latest tutorial More>

Disclaimer: All resources provided are partly from the Internet. If there is any infringement of your copyright or other rights and interests, please explain the detailed reasons and provide proof of copyright or rights and interests and then send it to the email: [email protected] We will handle it for you as soon as possible.

Copyright© 2022 湘ICP备2022001581号-3