请考虑以下代码:
package main
import (
"time"
"fmt"
)
const (
format = "2006 01 02 15:04 MST"
date = "2018 08 01 12:00 EDT"
)
func main() {
aloc, _ := time.LoadLocation("America/New_York")
eloc, _ := time.LoadLocation("Europe/Berlin")
tn, _ := time.Parse(format, date)
tl, _ := time.ParseInLocation(format, date, aloc)
fmt.Println(tn) // Says +0000 despite EDT being -0400
fmt.Println(tn.In(eloc)) // Expect 18:00, but get 14:00
fmt.Println(tl) // Correctly -0400
fmt.Println(tl.In(eloc)) // Correctly 18:00
}
您也可以在Go Playground上试用。
当我运行它时,我得到了这个结果(在我自己的系统上和通过Playground):
2018-08-01 12:00:00 +0000 EDT
2018-08-01 14:00:00 +0200 CEST
2018-08-01 12:00:00 -0400 EDT
2018-08-01 18:00:00 +0200 CEST
我原本预计第一行和第三行是相同的,第二行和第四行是相同的。
在我看来,Go的时间库不解析我在日期字符串中写的“EDT”时区标识符,尽管它是格式的一部分。
我自己的系统(Fedora 26)也将EST / EDT识别为时区:
$ TZ='America/New_York' date 080112002018
Wed 1 Aug 12:00:00 EDT 2018
当然,正如您所看到的,我可以使用ParseInLocation()
强制解决问题,但这只有在我事先知道时区时才有用。否则我需要自己将日期字符串的'EDT'部分解析为'America / New_York'。
或者我错过了什么?
答案 0 :(得分:2)
一个简单的调试运行表明这一切都归结为这个函数go/1.10/libexec/src/time/zoneinfo.go:226
func (l *Location) lookupName(name string, unix int64) (offset int, ok bool) {
l = l.get()
// First try for a zone with the right name that was actually
// in effect at the given time. (In Sydney, Australia, both standard
// and daylight-savings time are abbreviated "EST". Using the
// offset helps us pick the right one for the given time.
// It's not perfect: during the backward transition we might pick
// either one.)
for i := range l.zone {
zone := &l.zone[i]
if zone.name == name {
nam, offset, _, _, _ := l.lookup(unix - int64(zone.offset))
if nam == zone.name {
return offset, true
}
}
}
// Otherwise fall back to an ordinary name match.
for i := range l.zone {
zone := &l.zone[i]
if zone.name == name {
return zone.offset, true
}
}
// Otherwise, give up.
return
}
在我的OSX上(我在苏黎世,所以CET
截至目前)对l.get()
的调用返回包含区域切片中4个值为CET
的对象,{{1 }},CEST
和CET
。最重要的是事先处理CEST
和GMT
。所有其他区域对我来说都是“未知”,包括EDT。
答案 1 :(得分:2)
引用自time#Parse:
<块引用>当解析带有类似 MST
的区域缩写的时间时,如果区域
缩写在当前位置有一个定义的偏移量,那么该偏移量
使用。
这里的关键是“当前位置”。对我来说,就是CST
。使用它作为
预期:
package main
import "time"
func main() {
t, e := time.Parse(time.RFC1123, "Wed, 01 Aug 2018 12:00:00 CST")
if e != nil {
panic(e)
}
s := t.String()
println(s == "2018-08-01 13:00:00 -0500 CDT")
}
<块引用>
如果区域缩写未知,Parse 会将时间记录为 带有给定区域缩写和零偏移量的制造位置。
package main
import "time"
func main() {
t, e := time.Parse(time.RFC1123, "Wed, 01 Aug 2018 12:00:00 EDT")
if e != nil {
panic(e)
}
s := t.String()
println(s == "2018-08-01 12:00:00 +0000 EDT")
}
<块引用>
为避免此类问题,请首选使用数字区域偏移量的时间布局, 或使用 ParseInLocation。
package main
import "time"
func main() {
{ // example 1
t, e := time.Parse(time.RFC1123Z, "Wed, 01 Aug 2018 12:00:00 -0400")
if e != nil {
panic(e)
}
s := t.String()
println(s == "2018-08-01 12:00:00 -0400 -0400")
}
{ // example 2
ny, e := time.LoadLocation("America/New_York")
if e != nil {
panic(e)
}
t, e := time.ParseInLocation(time.RFC1123, "Wed, 01 Aug 2018 12:00:00 EDT", ny)
if e != nil {
panic(e)
}
s := t.String()
println(s == "2018-08-01 12:00:00 -0400 EDT")
}
}