XML 데이터를 중간 구조체로 역마샬링한 후 맵으로 변환하는 작업은 대용량 데이터 세트의 경우 시간이 많이 걸릴 수 있습니다. 이러한 경우 맵으로 직접 역마샬링하는 것이 더 효율적인 접근 방식입니다.
XML을 맵으로 직접 역마샬링하려면 xml.Unmarshaler 인터페이스를 구현하는 사용자 정의 유형을 생성할 수 있습니다. 이 유형은 역마샬링 프로세스를 처리하고 맵[문자열]문자열에 데이터를 저장합니다.
예:
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 맵으로 직접 효율적으로 역마샬링하려면 어떻게 해야 합니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!