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

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

报告相同问题?

悬赏问题

  • ¥15 fluent的在模拟压强时使用希望得到一些建议
  • ¥15 STM32驱动继电器
  • ¥15 Windows server update services
  • ¥15 关于#c语言#的问题:我现在在做一个墨水屏设计,2.9英寸的小屏怎么换4.2英寸大屏
  • ¥15 模糊pid与pid仿真结果几乎一样
  • ¥15 java的GUI的运用
  • ¥15 Web.config连不上数据库
  • ¥15 我想付费需要AKM公司DSP开发资料及相关开发。
  • ¥15 怎么配置广告联盟瀑布流
  • ¥15 Rstudio 保存代码闪退