Go 解析XML

前端之家收集整理的这篇文章主要介绍了Go 解析XML前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

今天看了看XML的解析,挺别致的和C++,Java之类的解析很是不同。

GO中将XMl的结构解析成一个数据结构,类似于一个结构体。

  1. package main
  2.  
  3. import (
  4. "encoding/xml"
  5. "fmt"
  6. "os"
  7. )
  8.  
  9. type Address struct {
  10. City,State string
  11. }
  12. type Person struct {
  13. XMLName xml.Name `xml:"person"`
  14. Id int `xml:"id,attr"`
  15. FirstName string `xml:"name>first"`
  16. LastName string `xml:"name>last"`
  17. Age int `xml:"age"`
  18. Height float32 `xml:"height,omitempty"`
  19. Married bool
  20. Address
  21. Comment string `xml:",comment"`
  22. }
  23.  
  24. func main() {
  25. v := &Person{Id: 13,FirstName: "John",LastName: "Doe",Age: 42,Height: 172,Comment: " Need more details. "}
  26. v.Address = Address{"Hanga Roa","Easter Island"}
  27.  
  28. output,err := xml.MarshalIndent(v," "," ")
  29. if err != nil {
  30. fmt.Printf("error: %v\n",err)
  31. }
  32.  
  33. os.Stdout.Write(output)
  34. }

  1. - the XMLName field,described above,is omitted.
  2. - a field with tag "-" is omitted.
  3. - a field with tag "name,attr" becomes an attribute with
  4. the given name in the XML element.
  5. - a field with tag ",attr" becomes an attribute with the
  6. field name in the XML element.
  7. - a field with tag ",chardata" is written as character data,not as an XML element.
  8. - a field with tag ",innerxml" is written verbatim,not subject
  9. to the usual marshalling procedure.
  10. - a field with tag ",comment" is written as an XML comment,not
  11. subject to the usual marshalling procedure. It must not contain
  12. the "--" string within it.
  13. - a field with a tag including the "omitempty" option is omitted
  14. if the field value is empty. The empty values are false,any
  15. nil pointer or interface value,and any array,slice,map,or
  16. string of length zero.
  17. - an anonymous struct field is handled as if the fields of its
  18. value were part of the outer struct.

上面是关于 那个结构的构成。

下面的两个例子 是读取xml的

  1. <person id="13">
  2. <name>
  3. <first>John</first>
  4. <last>Doe</last>
  5. </name>
  6. <age>42</age>
  7. <height>172</height>
  8. <Married>false</Married>
  9. <City>Hanga Roa</City>
  10. <State>Easter Island</State>
  11. <!-- Need more details. -->
  12. </person>
代码1:
  1. package main
  2.  
  3. import (
  4. "encoding/xml"
  5. "fmt"
  6. //"io"
  7. "os"
  8. )
  9.  
  10. type Address struct {
  11. City,comment"`
  12. }
  13.  
  14. func main() {
  15. file,_ := os.Open("a.xml")
  16. fileinfo,_ := file.Stat()
  17. filesize := fileinfo.Size()
  18. buffer := make([]byte,filesize)
  19. file.Read(buffer)
  20. fmt.Printf("%s",buffer)
  21. person := Person{}
  22. xml.Unmarshal(buffer,&person)
  23. fmt.Println(person)
  24. fmt.Println(person.FirstName)
  25. fmt.Println(person.Age)
  26. fmt.Println(person.City)
  27. fmt.Println(person.LastName)
  28. }

代码2:
  1. package main
  2.  
  3. import (
  4. "encoding/xml"
  5. "fmt"
  6. //"io"
  7. "os"
  8. )
  9.  
  10. type Address struct {
  11. City,State string
  12. }
  13. type Person struct {
  14. XMLName xml.Name `xml:"person"`
  15. Id int `xml:"id,attr"`
  16. FirstName string `xml:"name>first"`
  17. LastName string `xml:"name>last"`
  18. Age int `xml:"age"`
  19. Height float32 `xml:"height,omitempty"`
  20. Married bool
  21. Address
  22. Comment string `xml:",comment"`
  23. }
  24.  
  25. func main() {
  26. file,_ := os.Open("a.xml")
  27. person := Person{}
  28. decoder := xml.NewDecoder(file)
  29. decoder.Decode(&person)
  30. fmt.Println(person)
  31. }

输出
  1. {{ person} 13 John Doe 42 172 false {Hanga Roa Easter Island} Need more details. }

猜你在找的XML相关文章