我正在尝试从多个json文件读取json数据。我不确定如何读取每个文件并连接所有结果
有json文件名分别是test1.json,test2.json test3.json..etc,它们具有相同的数据结构,但是我在读取全部内容时遇到了问题,我的代码似乎只显示了最后一个。我已经根据文件名连接了一个字符串,但似乎对我不起作用。
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
}
}
我需要能够读取所有三个json文件,并希望将所有结果连接起来。谁能帮我?谢谢!
答案 0 :(得分:2)
您在生成文件名时使用fileIndex
,而不是在for循环中使用i
。
更改后的代码为:
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)
}
}
此外,您可以在for循环内执行类似master = append(master, book)
的操作,以最终获得master
中的所有JSON内容