Go语言中转换JSON数据简单例子

春季是一个富有生命力季节,也是一个美丽、神奇,充满希望季节。柳树枝条向下垂着,就似一条条线挂树上。春季景色十分美丽,就似一幅栩栩如生画。

Go语言转换JSON数据真是非常的简单。
以EasyUI的Demo为例,将/demo/datagrid/datagrid_data1.json 拷贝到$GOPATH/src目录:

JSON.go:


package main

import (
"encoding/json"
"fmt"
"io/ioutil"
)

type product struct {
Productid string
Productname string
Unitcost float32
Status string
Listprice float32
Attr1 string
Itemid string
}

type grid struct {
Total int
Rows []product
}

func main() {
var grid grid
data, err := ioutil.ReadFile("datagrid_data1.json")
if err != nil {
fmt.Println("ReadFile:", err.Error())
}
json.Unmarshal(data, &grid)
fmt.Println(grid)
fmt.Println("----------------------------")
b, _ := json.Marshal(grid)
fmt.Println(string(b))
}

将JSON绑定到结构体,结构体的字段一定要大写,否则不能绑定数据。

以上就是Go语言中转换JSON数据简单例子。爱你们已经两年了,希望我们能走得更久,都好好过日子,加油,要幸福哦。更多关于Go语言中转换JSON数据简单例子请关注haodaima.com其它相关文章!

您可能有感兴趣的文章
Go语言的JSON处理详解

Golang JSON的进阶用法实例讲解

详解Go语言RESTful JSON API创建

在Go语言中如何使用JSON的方法

如何使用Go语言解析动态JSON格式的方法