欧美一区二区三区,国内熟女精品熟女A片视频小说,日本av网,小鲜肉男男GAY做受XXX网站

go讀取json

夏志豪2年前8瀏覽0評論

go語言是一門應用廣泛的編程語言,可以用來開發后端服務、命令行工具以及移動端應用等。在開發過程中,很多時候需要讀取json格式的數據,go語言可以很方便地完成這個任務。

import (
"encoding/json"
"fmt"
"os"
)
type Person struct {
Name    string `json:"name"`
Age     int    `json:"age"`
Address string `json:"address"`
}
func main() {
jsonFile, err := os.Open("data.json")
if err != nil {
fmt.Println(err)
}
defer jsonFile.Close()
var people []Person
decoder := json.NewDecoder(jsonFile)
err = decoder.Decode(&people)
if err != nil {
fmt.Println(err)
}
fmt.Println(people)
}

以上代碼利用go語言標準庫中的encoding/json模塊實現了讀取json文件的功能。首先,需要定義一個結構體Person,用來保存json數據。結構體中的字段需要使用json:標簽指定對應的json鍵名,以便正確地讀取數據。

接著,在main函數中,打開json文件并創建一個Person結構體的切片people用來保存讀取到的數據。使用json.NewDecoder()函數創建一個json的解碼器decoder,并使用decoder.Decode()方法將json數據解碼后保存到people中。最后,輸出people的值,即為讀取到的json數據。

需要注意的是,os.Open()decoder.Decode()可能會產生錯誤,需要使用if err != nil語句處理。