dtf579777 2019-08-13 06:09
浏览 272
已采纳

如何读取多个json文件

I am trying to read json data from multiple json files. I am not sure how I read each files and concatenate all results

There json files name are test1.json, test2.json test3.json..etc with the same data structure but I am having an issue read then all and my code seems to only show the last one. I have concatenated a string based on the file name but seems to not working for me.

type Book struct {
    Id    string `json: "id"`
    Title string `json: "title"`
}

func main() {
    fileIndex := 2 // three json files. All named test1.json, test2.json and test3.json

    var master []Book

    for i := 0; i <= fileIndex; i++ {
        fileName := fmt.Sprintf("%s%d%s", "test", fileIndex, ".json")

        // Open jsonFile
        jsonFile, err := os.Open(fileName)

        defer jsonFile.Close()

        byteValue, _ := ioutil.ReadAll(jsonFile)
        fmt.Println(byteValue)
        var book []Book

        json.Unmarshal(byteValue, &book)
        fmt.Println(book) // all print shows the test3.json result 
    }
}

I need to be able to read all three json files and hoping to concatenate all results. Can anyone help me? Thank you!

  • 写回答

1条回答 默认 最新

  • dozr162106 2019-08-13 06:26
    关注

    You are using fileIndex while generating the filename instead of using i in the for loop. The code after the changes would be :

    type Book struct {
        Id    string `json: "id"`
        Title string `json: "title"`
    }
    
    func main() {
        fileIndex := 2 // three json files. All named test1.json, test2.json and test3.json
    
        var master []Book
    
        for i := 0; i <= fileIndex; i++ {
            fileName := fmt.Sprintf("%s%d%s", "test", i, ".json")
    
            // Open jsonFile
            jsonFile, err := os.Open(fileName)
    
            defer jsonFile.Close()
    
            byteValue, _ := ioutil.ReadAll(jsonFile)
            fmt.Println(byteValue)
            var book []Book
    
            json.Unmarshal(byteValue, &book)
            fmt.Println(book)
        }
    }
    

    Also, you can do something like master = append(master, book) inside the for loop to finally get all JSON content in master

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥100 求用matlab求解上述微分方程的程序代码
  • ¥15 请问各位,如何在Jetson nano主控板的Ubuntu系统中安装PyQt5
  • ¥15 MAC安装佳能LBP2900驱动的网盘提取码
  • ¥400 微信停车小程序谁懂的来
  • ¥15 ATAC测序到底用什么peak文件做Diffbind差异分析
  • ¥15 安装ubantu过程中第一个vfat 文件挂载失败
  • ¥20 GZ::CTF如何兼容一些靶机?
  • ¥15 etcd集群部署问题
  • ¥20 谁可以帮我一下问一下各位
  • ¥15 为何重叠加权后love图的SMD与svyCreateTableOne函数绘制基线表的不一致