您好,登錄后才能下訂單哦!
golang中如何解析xml,很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來學(xué)習(xí)下,希望你能有所收獲。
golang解析xml真是好用,特別是struct屬性的tag讓程序簡(jiǎn)單了許多,其他變成語言需要特殊類型的在golang里直接使用tag舒服
完整示例代碼:
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) }
看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。