Golang,XML解析为结构?

问题描述 投票:1回答:2

我有这样的xml文档,我需要获取一个DATA数组。我无法解决这个简单的任务4小时....想回到node.js :-)

<?xml version="1.0" standalone="no"?>
<RETS ReplyCode="0" ReplyText="Operation Successful" >
<COUNT Records="58951" />
<DELIMITER value="09"/>
<COLUMNS>   LN  </COLUMNS>
<DATA>  09361303    </DATA>
<DATA>  09333085    </DATA>
<MAXROWS/>

type DATA struct {
    DATA string `xml:"DATA"`
}

type Rets struct {
    DATA []DATA `xml:"RETS>DATA"`
}


data := &Rets{}
decoder := xml.Unmarshal(body,&data)

fmt.Println(decoder)
go xml-parsing
2个回答
2
投票

来自xml.Unmarshal docs

  • 如果XML元素包含字符数据,则该数据将累积在具有标记“,chardata”的第一个struct字段中。 struct字段可以具有type [] byte或string。如果没有这样的字段,则丢弃字符数据。

使用

type DATA struct {
    DATA string `xml:",chardata"`
}

type Rets struct {
    DATA []DATA `xml:"DATA"`
}

或者在这个简单的例子中,您可以使用

type Rets struct {
    DATA []string `xml:"DATA"`
}

默认情况下,它从元素列表中收集charadata


0
投票

有几种工具可以将XML转换为Go结构。一个适合阅读的是zek,虽然它是实验性的,但它已经可以处理几个常见的XML结构。

您可以使用简单的命令从XML fileraw)转到结构:

$ curl -sL https://git.io/fN4Pq | zek -e -p -c

这将创建一个结构加上一个example program来测试编组(该示例非常少,它从stdin读取XML并将其转换为JSON)。

这是一个示例结构(对于某些来自this repo的XML):

// RETS was generated 2018-09-07 12:11:10 by tir on apollo.local.
type RETS struct {
    XMLName       xml.Name `xml:"RETS"`
    Text          string   `xml:",chardata"`
    ReplyCode     string   `xml:"ReplyCode,attr"`
    ReplyText     string   `xml:"ReplyText,attr"`
    METADATATABLE struct {
        Text     string   `xml:",chardata"`
        Resource string   `xml:"Resource,attr"`
        Class    string   `xml:"Class,attr"`
        Version  string   `xml:"Version,attr"`
        Date     string   `xml:"Date,attr"`
        COLUMNS  string   `xml:"COLUMNS"` // MetadataEntryID    SystemNam...
        DATA     []string `xml:"DATA"`    // 7  City        City    Ci ...
    } `xml:"METADATA-TABLE"`
}

免责声明:我写了zek。

© www.soinside.com 2019 - 2024. All rights reserved.