drtppp75155 2016-12-14 05:01
浏览 391
已采纳

从XML解析日期不起作用

If I execute time.Parse() with simple values - then everything is fine, but parsing XML does not.

type customDate struct {
    time.Time
}


func (c *customDate) UnmarshalXml(d *xml.Decoder, start xml.StartElement) error {
    var v string
    if err := d.DecodeElement(&v, &start); err != nil{
        return err
    }

    loc, _ := time.LoadLocation("Europe/Moscow")
    prs, err := time.ParseInLocation("02.01.2006", v, loc)
    if err != nil {
        return err
    }

    *c = customDate{prs}
    return nil
}

example on playground

  • 写回答

1条回答 默认 最新

  • download1323 2016-12-14 05:09
    关注

    date is an XML attribute, not an element. Therefore, you must implement the xml.UnmarshalerAttr interface rather than xml.Unmarshaler:

    package main
    
    import (
        "encoding/xml"
        "fmt"
        "time"
    )
    
    type xmlSource struct {
        XMLName xml.Name `xml:"BicDBList"`
        Base    string   `xml:"Base,attr"`
        Items   []item   `xml:"item"`
    }
    
    // Item represent structure of node "item"
    type item struct {
        File string     `xml:"file,attr"`
        Date customDate `xml:"date,attr"`
    }
    
    type customDate struct {
        time.Time
    }
    
    func (c *customDate) UnmarshalXMLAttr(attr xml.Attr) error {
        loc, err := time.LoadLocation("Europe/Moscow")
        if err != nil {
            return err
        }
        prs, err := time.ParseInLocation("02.01.2006", attr.Value, loc)
        if err != nil {
            return err
        }
    
        c.Time = prs
        return nil
    }
    
    var data = []byte(`<BicDBList Base="/mcirabis/BIK/">
        <item file="bik_db_09122016.zip" date="09.12.2016"/>
        <item file="bik_db_08122016.zip" date="08.12.2016"/>
        <item file="bik_db_07122016.zip" date="07.12.2016"/>
        <item file="bik_db_06122016.zip" date="06.12.2016"/>
    </BicDBList>`)
    
    func main() {
        var sample xmlSource
    
        err := xml.Unmarshal(data, &sample)
    
        if err != nil {
            println(err.Error())
        }
        fmt.Printf("%#v
    ", sample)
    }
    

    https://play.golang.org/p/U56qfEOe-A

    展开全部

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

报告相同问题?

手机看
程序员都在用的中文IT技术交流社区

程序员都在用的中文IT技术交流社区

专业的中文 IT 技术社区,与千万技术人共成长

专业的中文 IT 技术社区,与千万技术人共成长

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

关注【CSDN】视频号,行业资讯、技术分享精彩不断,直播好礼送不停!

客服 返回
顶部