首页 >后端开发 >Golang >如何有效地将 XML 直接解组到 Go Map 中?

如何有效地将 XML 直接解组到 Go Map 中?

Barbara Streisand
Barbara Streisand原创
2024-12-18 01:53:10265浏览

How Can I Efficiently Unmarshal XML Directly into a Go Map?

将 XML 直接解组为映射

将 XML 数据解组为中间结构,然后将其转换为映射,对于大型数据集来说可能非常耗时。在这种情况下,直接解组到映射中是一种更有效的方法。

要将 XML 直接解组到映射中,您可以创建一个实现 xml.Unmarshaler 接口的自定义类型。此类型将处理解组过程并将数据存储在映射[string]字符串中。

示例:

type classAccessesMap struct {
    m map[string]string
}

// UnmarshalXML implements the xml.Unmarshaler interface to unmarshal XML directly into the map.
func (c *classAccessesMap) UnmarshalXML(d *xml.Decoder, start xml.StartElement) error {
    c.m = map[string]string{}

    key := ""
    val := ""

    // Iteratively parse XML tokens.
    for {
        t, _ := d.Token()
        switch tt := t.(type) {

        // TODO: Handle the inner structure parsing here.

        case xml.StartElement:
            key = tt.Name.Local

        case xml.EndElement:
            // Store the key-value pair in the map when the end of the "enabled" element is reached.
            if tt.Name.Local == "enabled" {
                c.m[key] = val
            }

            // Return nil when the end of the "classAccesses" element is reached.
            if tt.Name == start.Name {
                return nil
            }
        }
    }
}

用法:

// Unmarshal the XML into the custom classAccessesMap type.
var classAccessesMap classAccessesMap
if err := xml.Unmarshal([]byte(xmlData), &classAccessesMap); err != nil {
    // Handle error
}

fmt.Println(classAccessesMap.m) // Prints the map containing the parsed data.

以上是如何有效地将 XML 直接解组到 Go Map 中?的详细内容。更多信息请关注PHP中文网其他相关文章!

声明:
本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn