加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
eg12.16.json.go 700 Bytes
一键复制 编辑 原始数据 按行查看 历史
Letotn 提交于 2023-01-25 09:35 . add eg.12.16
package main
// 使用json包生成json格式的数据并写入文件
import (
"encoding/json"
"fmt"
"log"
"os"
)
type Address struct {
Type string
City string
Country string
}
type VCard struct {
Name string
Addresses []*Address
Remark string
}
func main() {
pa := &Address{"private", "Beijing", "China"}
wk := &Address{"work", "Wuhan", "China"}
vc := VCard{"Hanmeimei", []*Address{pa, wk}, "none"}
jc, _ := json.Marshal(vc)
fmt.Printf("json formated is: %s\n", jc)
file, _ := os.OpenFile("vcard.json", os.O_WRONLY|os.O_CREATE, 0666)
enc := json.NewEncoder(file)
if err := enc.Encode(vc); err != nil {
log.Printf("Encoding Josn Error: %s", err.Error())
}
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化