donglu9872 2012-11-08 17:41
浏览 654
已采纳

如何在Go中解析毫秒级以来的时间戳字符串?

I've got a string with milliseconds since the epoch (it came originally from a java.lang.System.currentTimeMillis() call). What's the right way to convert this string into a human readable timestamp string in Go?

Looking at the time package I see the Parse function, but the layouts all seem to be normal timezone-based times. Once into a Time object, I can use Format(Time.Stamp) to get the output I want, but I'm not clear on how to get the string into a Time object.

  • 写回答

1条回答 默认 最新

  • 普通网友 2012-11-08 18:13
    关注

    The format string does not support milliseconds since the epoch, so you need to parse manually. For example:

    func msToTime(ms string) (time.Time, error) {
        msInt, err := strconv.ParseInt(ms, 10, 64)
        if err != nil {
            return time.Time{}, err
        }
    
        return time.Unix(0, msInt*int64(time.Millisecond)), nil
    }
    

    Check out http://play.golang.org/p/M1dWGLT8XE to play with the example live.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 vue3页面el-table页面数据过多
  • ¥100 vue3中融入gRPC-web
  • ¥15 kali环境运行volatility分析android内存文件,缺profile
  • ¥15 写uniapp时遇到的问题
  • ¥15 vs 2008 安装遇到问题
  • ¥15 matlab有限元法求解梁带有若干弹簧质量系统的固有频率
  • ¥15 找一个网络防御专家,外包的
  • ¥100 能不能让两张不同的图片md5值一样,(有尝)
  • ¥15 informer代码训练自己的数据集,改参数怎么改
  • ¥15 请看一下,学校实验要求,我需要具体代码