golang解析xml的方法
更新时间:2016年07月22日 11:38:50 作者:dotcoo
这篇文章主要介绍了golang解析xml的方法,结合实例形式分析了Go语言针对xml文件的读取与解析的相关技巧,需要的朋友可以参考下
本文实例讲述了golang解析xml的方法。分享给大家供大家参考,具体如下:
golang解析xml真是好用,特别是struct属性的tag让程序简单了许多,其他变成语言需要特殊类型的在golang里直接使用tag舒服
xml文件点击此处本站下载。
完整示例代码:
复制代码 代码如下:
package main
import (
"os"
"encoding/xml"
// "encoding/json"
"io/ioutil"
"fmt"
)
type Location struct {
CountryRegion []CountryRegion
}
type CountryRegion struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
State []State
}
type State struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
City []City
}
type City struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
Region []Region
}
type Region struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
}
func main() {
f, err := os.Open("LocList.xml")
if err != nil {
panic(err)
}
data, err := ioutil.ReadAll(f)
if err != nil {
panic(err)
}
// v := make(map[string]interface{})
var v Location
err = xml.Unmarshal(data, &v)
if err != nil {
panic(err)
}
// fmt.Printf("%#v\n", v)
// table
for _, countryRegion := range v.CountryRegion {
// fmt.Printf("%s,%s\n", countryRegion.Code, countryRegion.Name)
if len(countryRegion.State) == 0 {
continue
}
for _, state := range countryRegion.State {
// fmt.Printf("%s,%s,%s\n", countryRegion.Code, state.Code, state.Name)
if len(state.City) == 0 {
continue
}
for _, city := range state.City {
// fmt.Printf("%s,%s,%s,%s\n", countryRegion.Code, state.Code, city.Code, city.Name)
if len(city.Region) == 0 {
continue
}
for _, region := range city.Region {
fmt.Printf("%s,%s,%s,%s,%s\n", countryRegion.Code, state.Code, city.Code, region.Code, region.Name)
}
}
}
}
// // json
// js, err := json.Marshal(&v.CountryRegion[0])
// if err != nil {
// panic(err)
// }
// fmt.Printf("%s\n", js)
}
import (
"os"
"encoding/xml"
// "encoding/json"
"io/ioutil"
"fmt"
)
type Location struct {
CountryRegion []CountryRegion
}
type CountryRegion struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
State []State
}
type State struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
City []City
}
type City struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
Region []Region
}
type Region struct {
Name string `xml:",attr"`
Code string `xml:",attr"`
}
func main() {
f, err := os.Open("LocList.xml")
if err != nil {
panic(err)
}
data, err := ioutil.ReadAll(f)
if err != nil {
panic(err)
}
// v := make(map[string]interface{})
var v Location
err = xml.Unmarshal(data, &v)
if err != nil {
panic(err)
}
// fmt.Printf("%#v\n", v)
// table
for _, countryRegion := range v.CountryRegion {
// fmt.Printf("%s,%s\n", countryRegion.Code, countryRegion.Name)
if len(countryRegion.State) == 0 {
continue
}
for _, state := range countryRegion.State {
// fmt.Printf("%s,%s,%s\n", countryRegion.Code, state.Code, state.Name)
if len(state.City) == 0 {
continue
}
for _, city := range state.City {
// fmt.Printf("%s,%s,%s,%s\n", countryRegion.Code, state.Code, city.Code, city.Name)
if len(city.Region) == 0 {
continue
}
for _, region := range city.Region {
fmt.Printf("%s,%s,%s,%s,%s\n", countryRegion.Code, state.Code, city.Code, region.Code, region.Name)
}
}
}
}
// // json
// js, err := json.Marshal(&v.CountryRegion[0])
// if err != nil {
// panic(err)
// }
// fmt.Printf("%s\n", js)
}
希望本文所述对大家Go语言程序设计有所帮助。
相关文章
Go结构体SliceHeader及StringHeader作用详解
这篇文章主要为大家介绍了Go结构体SliceHeader及StringHeader作用的功能及面试官爱问的实际意义详解,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2022-07-07Go语言将string解析为time.Time时两种常见报错
本文主要介绍了Go语言将string解析为time.Time时两种常见报错,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧2023-03-03执行go build报错go: go.mod file not found in current dir
本文主要为大家介绍了执行go build报错go: go.mod file not found in current directory or any parent directory解决分析,有需要的朋友可以借鉴参考下,希望能够有所帮助,祝大家多多进步,早日升职加薪2023-06-06golang中channel+error来做异步错误处理有多香
官方推荐golang中错误处理当做值处理, 既然是值那就可以在channel中传输,这篇文章主要介绍了golang 错误处理channel+error真的香,需要的朋友可以参考下2023-01-01
最新评论