package main
import (
"fmt"
"encoding/json"
"os"
"io/ioutil"
"io"
)
type Post struct {
Id int `json:"id"`
Content string `json:"content"`
Author Author `json:"author"`
Comments []Comment `json:"comments"`
}
type Author struct {
Id int `json:"id"`
Name string `json:"name"`
}
type Comment struct {
Id int `json:"id"`
Content string `json:"content"`
Author string `json:"author"`
}
func main() {
//创建JSON
post :=Post {
Id: 1,
Content:"Hello World!",
Author: Author{
Id: 2,
Name: "shao tong",
},
Comments: []Comment{
Comment{
Id:3,
Content:"Have a great day!",
Author:"Adam",
},
Comment{
Id:4,
Content:"How are tyyou today?!",
Author:"Betty",
},
},
}
//方法一:
output,err := json.MarshalIndent(&post,"","\t\t")
if err != nil {
fmt.Println("Error marshalling to JSON:",err)
return
}
err = ioutil.WriteFile("post1.json",output,0644)
if err != nil {
fmt.Println("Error writing JSON to file:",err)
return
}
//方法二:
jsonFile,err :=os.Create("post2.json")
if err != nil {
fmt.Println("Error creating JSON file:",err)
return
}
encoder :=json.NewEncoder(jsonFile)
err = encoder.Encode(&post)
if err != nil {
fmt.Println("Error encoding JSON to file:",err)
return
}
//分析JSON
//方法一:
jsonFile1,err := os.Open("post.json")
if err != nil {
fmt.Println("Error opening JSON file",err)
return
}
defer jsonFile1.Close()
jsonData1,err :=ioutil.ReadAll(jsonFile1)
if err != nil {
fmt.Println("Error reading JSON data :",err)
return
}
var post1 Post
json.Unmarshal(jsonData1, &post1)
fmt.Println(post1)
//方法二:
decoder :=json.NewDecoder(jsonFile1)
for {
var post Post
err :=decoder.Decode(&post)
if err == io.EOF {
break
}
if err != nil {
fmt.Println("Error decoding JSON:",err)
return
}
fmt.Println(post)
}
}
go分析和创建JSON
©著作权归作者所有,转载或内容合作请联系作者
- 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
- 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
- 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
推荐阅读更多精彩内容
- 异常处理 error 接口 (非致命错误) panic( 致命错误,程序崩溃) recover (防止程序崩溃导致...
- 一、Json数据的解析和编码 在开发过程中我们常常需要对数据进行编码和解析import "encoding/jso...
- 编码为JSON格式 type header struct {Encryption string `json:"en...