通过mxj访问XML数据

时间:2019-03-29 16:12:05

标签: xml go

使用mxj将XML作为地图提取,但是无法使用["key"]["key"]语法访问内部地图数据。得到错误:

.\mxjt.go:28:31: invalid operation: conf["directory"]["item_list"] (type interface {} does not support indexing)

但是,孩子地图呢?我一定在这里想念什么。

我的golang:

package main

import (
    "fmt"
    "io/ioutil"
    "log"
    "os"

    "github.com/clbanning/mxj"
)

var (
    localfile string = os.Getenv("USERPROFILE") + "\\tmp-phoneconfig.cfg"
)

func main() {

    f, err := ioutil.ReadFile(localfile)
    if err != nil {
        log.Fatal(err)
    }

    conf, err := mxj.NewMapXml(f)
    if err != nil {
        log.Fatal("err:", err.Error())
    }

    fmt.Println(conf["directory"]["item_list"])
}

我的XML:

<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<!-- $RCSfile: 000000000000-directory~.xml,v $  $Revision: 1.3 $ -->
<directory>
        <item_list>
                <item>
                        <ln> 1002       Shelly </ln>
                        <fn> Shelly </fn>
                        <ct> 1002 </ct>
                </item>
                <item>
                        <ln> 1003       Chris </ln>
                        <fn> Chris </fn>
                        <ct> 1003 </ct>
                </item>
                <item>
                        <ln> 1004       Extra </ln>
                        <fn> Extra </fn>
                        <ct> 1004 </ct>
                </item>
                <item>
                        <ln> 1005       Ray </ln>
                        <fn> Ray </fn>
                        <ct> 1005 </ct>
                </item>
                <item>
                        <ln> 1006       Kitchen </ln>
                        <fn> Kitchen </fn>
                        <ct> 1006 </ct>
                </item>
                <item>
                        <ln> 1007       Scott </ln>
                        <fn> Scott </fn>
                        <ct> 1007 </ct>
                </item>
                <item>
                        <ln> 1008       Heath </ln>
                        <fn> Heath </fn>
                        <ct> 1008 </ct>
                </item>
                <item>
                        <ln> 1009       Andy </ln>
                        <fn> Andy </fn>
                        <ct> 1009 </ct>
                </item>
                <item>
                        <ln> 1010       John </ln>
                        <fn> John </fn>
                        <ct> 1010 </ct>
                </item>
                </item_list>
</directory>

1 个答案:

答案 0 :(得分:0)

更新。

对XML使用NewMapXmlReader(),ValuesForPath()。

func main() {
    file, err := os.Open(localfile)
    if err != nil {
        log.Fatal(err)
    }
    defer file.Close()

    m, err := mxj.NewMapXmlReader(file)
    if err != nil {
        log.Fatal(err)
    }

    item, err := m.ValuesForPath("directory.item_list.item")
    if err != nil {
        log.Fatal(err)
    }

    for _, v := range item {
        data := v.(map[string]interface{})
        fmt.Println(data["ln"], data["fn"], data["ct"])
    }
}