将 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中文网其他相关文章!