Golang program to read XML file into struct
The xml package includes
Unmarshal()
function that supports decoding data from a byte slice into values. The xml.Unmarshal()
function is used to decode the values from the XML formatted file into a Notes
struct.Sample XML file:
Example
<note>
<to>Tove</to>
<from>Jani</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
package main
import (
"encoding/xml"
"fmt"
"io/ioutil"
)
type Notes struct {
To string `xml:"to"`
From string `xml:"from"`
Heading string `xml:"heading"`
Body string `xml:"body"`
}
func main() {
data, _ := ioutil.ReadFile("notes.xml")
note := &Notes{}
_ = xml.Unmarshal([]byte(data), ¬e)
fmt.Println(note.To)
fmt.Println(note.From)
fmt.Println(note.Heading)
fmt.Println(note.Body)
}
Output
Tove
Jani
Reminder
Don't forget me this weekend!
Most Helpful This Week
How to check specific field exist in struct?
Pass an Interface as an argument to a function in Go (Golang)
GO Program to Find LCM and GCD of given two numbers
Nested Struct Type
Example of Interface with Type Embedding and Method Overriding in GO language
Interfaces with similar methods in Go Programming Language