使用Golang解析Json

时间:2019-05-24 07:29:26

标签: json go

我正在尝试使用go解析json,但是我不确定正在构建的数据结构。输出始终是一个空对象。

数据结构:

{
  "Catalog": {
    "Name": "TypeMime",
    "Version": "1.0",
    "ObjectType": {
      "Area": 2,
      "Service": 2,
      "Version": 1,
      "Number": 117
    },
    "Items": [
      {
        "ItemNamespace": "application",
        "Name": "binhex-bin",
        "Oid": null,
        "Uid": 2201,
        "DocMandatoryProperties": [],
        "DocOptionalProperties": [
          "Subsystem",
          "Label",
          "Description"
        ],
        "DocVersionProperties": [],
        "DefaultAction": null,
        "Extensions": [
          ".bin"
        ],
        "Confidentiality": [
          "confidentiality/Public"
        ],
        "Converter": [],
        "Editor": [
          "gedit"
        ],
        "DiffEditor": [
          "kompare"
        ],
        "Icon": "",
        "IdentificationPattern": [
          "^\\S+.bin$"
        ]
      },
      {other items}
}
type ObjectType struct {
    Area int `json:"Area"`
    Service int `json:"Service"`
    Version int `json:"Version"`
    Number int `json:"Number"`
}
type Catalog struct {
    Name string `json:"Name"`
    Version string `json:"Version"`
    ObjectType ObjectType `json:"ObjectType"`
    Items []Item `json:"Items"`
}
type Item struct {
    ItemNamespace string `json:"ItemNamespaceItems"`
    Name string `json:"Name"`
    Oid int `json:"Oid"`
    Uid int `json:"Uid"`
    DocMandatoryProperties []string `json:"DocMandatoryProperties"`
    DocOptionalProperties []string `json:"DocOptionalProperties"`
    DocVersionProperties []string `json:"DocVersionProperties"`
    DefaultAction string `json:"DefaultAction"`
    Extensions []string `json:"Extensions"`
    Confidentiality []string `json:"Confidentiality"`
    Converter []string `json:"Converter"`
    Editor []string `json:"Editor"`
    DiffEditor []string `json:"DiffEditor"`
    Icon string `json:"Icon"`
    IdentificationPattern []string `json:"IdentificationPattern"`
}

    var catalog Catalog

    // Open our jsonFile
    jsonFile, err := os.Open("path.json")
    // if we os.Open returns an error then handle it
    if err != nil {
        fmt.Println(err)
    }
    fmt.Println("Successfully Opened json")
    // defer the closing of our jsonFile so that we can parse it later on
    defer jsonFile.Close()
    byteValue, err := ioutil.ReadAll(jsonFile)
    if err != nil {
        fmt.Println("error input file :",err)
    }
    err = json.Unmarshal(byteValue, &catalog)
    if err != nil {
        fmt.Println("error input file :",err)
    }
    fmt.Println("catalog from json : ",catalog)

我得到以下输出:{{0 0 0 0} []}

所以我在想,也许我构建的结构不正确,或者Go无法处理“空”值。 JSON文件已正确打开并转换为字节,我没有收到任何错误,只是没有得到我所期望的错误,即我的Catalog变量中的json解析。

有什么建议吗?

1 个答案:

答案 0 :(得分:2)

$(VSINSTALLDIR)Web\External

您告诉go您将要解析目录,然后执行其他操作。您实际要做的是为它提供一个(未命名的)对象,该对象具有带有相应值的“目录”键。 Go在此对象中找不到任何目录键,这就是为什么您得到所有​​空字段的原因。