How to use XML in Go?

王林
Release: 2023-05-11 16:04:36
Original
1321 people have browsed it

XML is a common data exchange format. In Go language, there are many ways to manipulate XML. Here's how to use XML in Go.

1. Import the XML package

First, you need to import theencoding/xmlstandard library into the Go program.

import "encoding/xml"
Copy after login

2. Create XML structure

In Go, structures are used to represent XML data. Here is a sample XML as an example.

   Harry Potter J.K. Rowling 2005 29.99   Learning XML Erik T. Ray 2003 39.95  
Copy after login

You can create the following Go structure to represent it:

type Bookstore struct { XMLName xml.Name `xml:"bookstore"` Books []Book `xml:"book"` } type Book struct { XMLName xml.Name `xml:"book"` Category string `xml:"category,attr"` Title string `xml:"title"` Author string `xml:"author"` Year int `xml:"year"` Price float32 `xml:"price"` }
Copy after login

3. Parse the XML into the structure

Then, you can usexml.Unmarshal( )Function parses XML data into Go structure.

xml_data := []byte(`   Harry Potter J.K. Rowling 2005 29.99   Learning XML Erik T. Ray 2003 39.95  `) var bookstore Bookstore err := xml.Unmarshal(xml_data, &bookstore) if err != nil { fmt.Println("error: ", err) return } fmt.Println(bookstore)
Copy after login

xml.Unmarshal()Parses XML data into a structure and stores the result in thebookstorevariable.

4. Marshall the structure into XML

Conversely, you can use thexml.Marshal()function to marshal the structure into XML data.

bookstore := Bookstore { XMLName: xml.Name{Local: "bookstore"}, Books: []Book{ Book{ Category: "children", Title: "Harry Potter", Author: "J.K. Rowling", Year: 2005, Price: 29.99, }, Book{ Category: "web", Title: "Learning XML", Author: "Erik T. Ray", Year: 2003, Price: 39.95, }, }, } xml_data, err := xml.MarshalIndent(bookstore, "", " ") if err != nil { fmt.Println("error: ", err) } fmt.Printf("%s ", xml_data)
Copy after login

xml.MarshalIndent()The function marshals thebookstorestructure into XML data and stores the result in the variablexml_data. The first parameter is the structure to be grouped, the second parameter is the indented string to be used before each line, and the third parameter is the string to be used between each element.

5. Manipulate XML elements

In the structure, you can use XML names (such as) and XML attributes (such ascategory) as the label of the structure field.

type Book struct { XMLName xml.Name `xml:"book"` Category string `xml:"category,attr"` Title string `xml:"title"` Author string `xml:"author"` Year int `xml:"year"` Price int `xml:"price"` }
Copy after login

When parsing XML, the values of the structure fields will be automatically populated based on the XML data.

6. Summary

Use the above steps to use XML in Go. First, you need to import theencoding/xmllibrary, and then define a structure to represent XML data. XML data can be parsed into this structure, or this structure can be used to marshal XML data. To operate XML elements, you need to use the name and attributes of the XML element in the structure field tag.

The above is the detailed content of How to use XML in Go?. For more information, please follow other related articles on the PHP Chinese website!

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!