使用Golang修改JSON文件 [英] Modifying JSON file using Golang

查看:132
本文介绍了使用Golang修改JSON文件的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我试图读取Golang中的JSON文件,修改此JSON文件,然后创建一个新的JSON文件/在此JSON文件上进行覆盖.我在网上看到了几个示例,但似乎无法将两个和两个放在一起以获得所需的结果.我尝试只在GO中创建自己的JSON str并对其进行修改,但仍然失败.

I am attempting to read in a JSON file in Golang, modifying this JSON file, and then creating a new JSON file/writing over this JSON file. I have seen several samples online, but can't seem to put two and two together to get the required result. I tried just making my own JSON str in GO and modifying that, but have still failed.

package main

import (
    "encoding/json"
    "fmt"
)

type Person struct {
    Name    string
    Age     int
    Details interface{}
}

func main() {
    //I created a simple Json structure here to play with
    str := `{"name": "A",
        "age":20,
        "details": {"salary":100000000}
    }`
    var data Person

    err := json.Unmarshal([]byte(str), &data)
    if err != nil {
        panic(err)
    }

    //I make a map so that I can adjust the value of the salary
    details, ok := data.Details.(map[string]interface{})
    if ok {
        details["salary"] = 999999
    }
    //Change the other values of a Person
    data.Name = "B"
    data.Age = 19
    fmt.Println(data)

    //SAMPLE OUTPUT: {B 19 map[salary:999999]}
}

我已经尝试过几次读取文件,以下是我的最佳尝试:

I have made several attempts with reading the file, below is my best attempt:

package main

import (
    "encoding/json"
    "fmt"
    "io/ioutil"
    "os"
)

/* Create the structure that follows the outline of the JSON file*/

type UserType struct {
    User []struct {
        CdbID     string `json:"cdb_id"`
        Firstname string `json:"firstname"`
        Lastname  string `json:"lastname"`
        Phone     int64  `json:"phone"`
        Email     string `json:"email"`
        Address   []struct {
            Street  string `json:"street"`
            City    string `json:"city"`
            Zip     string `json:"zip"`
            Country string `json:"country"`
        } `json:"address"`
        Authenticators []struct {
            Name  string `json:"name"`
            Phone int64  `json:"phone"`
        } `json:"authenticators"`
        VoiceSig            string `json:"voice_sig"`
        VoicesigCreatedTime string `json:"voicesig_created_time"`
        Status              string `json:"status"`
    } `json:"user"`
}

func main() {
    file, err := ioutil.ReadFile("user.json") //Read File
    if err != nil {
        fmt.Print("Error:", err)
    }

    var u UserType
    json.Unmarshal(file, &u)     //Parse the Json-encoded Data and store the results in u
    result, e := json.Marshal(u) //Returns the Json encoding of u into the variable result
    if e != nil {
        fmt.Println("error", err)
    }
    os.Stdout.Write(result) //The line of code golang.org uses to print  the Json encoding
}

这是示例输出:

{
    "user": [{
        "cdb_id":"",
        "firstname":"Tom",
        "lastname":"Bradley",
        "phone":14155555555,
        "email":"tom@gmail.com",
        "address":[{
            "street":"4343 shoemaker ave",
            "city":"Brea",
            "zip":"92821",
            "country":"USA"
        }],
        "authenticators":[{
            "name":"Lisa Hayden",
            "phone":15625555555
        },{
            "name":"Pavan M",
            "phone":17145555555
        }],
        "voice_sig":"242y5-4546-555kk54-437879ek545",
        "voicesig_created_time":"2017-08-02T21:27:44+0000",
        "status":"verified"
    }]
}

我只是对如何修改我想要的内容感到困惑,特别是上述示例输出的身份验证器".谢谢!

I am just confused on how to modify what I want, specifically the "Authenticators" of the aforementioned sample output. Thanks!

推荐答案

添加声明

type Authenticator struct {
    Name  string `json:"name"`
    Phone int64  `json:"phone"`
}

并更改

Authenticators []struct {
        Name  string `json:"name"`
        Phone int64  `json:"phone"`
} `json:"authenticators"`

Authenticators []Authenticator `json:"authenticators"`

然后,向第一个用户添加身份验证器:

Then, to add an authenticator to the first user:

u.User[0].Authenticators = append(u.User[0].Authenticators, Authenticator{
        Name: "John Doe",
        Phone: 1234567890,
})

这篇关于使用Golang修改JSON文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆