如何用golang源码分析simplejson,相信很多没有经验的人对此束手无策,为此本文总结了问题出现的原因和解决方法,通过这篇文章希望你能解决这个问题。
创新互联建站是一家专注于做网站、网站设计与策划设计,宁德网站建设哪家好?创新互联建站做网站,专注于网站建设十载,网设计领域的专业建站公司;建站业务涵盖:宁德等地区。宁德做网站价格咨询:028-86922220
背景:
1,golang自带的json解析库encoding/json提供了json字符串到json对象的相互转换,在json字符串比较简单的情况下还是挺好用的,但是当json字符串比较复杂或者嵌套比较多的时候,就显得力不从心了,不可能用encoding/json那种为每个嵌套字段定义一个struct类型的方式,这时候使用simplejson库能够很方便的解析。
2,当被解析的json数据不一定完整的时候,使用标准库经常会解析失败,但是解析部分数据也是我们能接受的,这时可以用simplejson
源码
可以看到,基本思路是将数据解析进一个interface{},然后进行类型推断。
底层还是用的标准库
func NewJson(body []byte) (*Json, error) { j := new(Json) err := j.UnmarshalJSON(body) } func (j *Json) UnmarshalJSON(p []byte) error { dec := json.NewDecoder(bytes.NewBuffer(p)) dec.UseNumber() return dec.Decode(&j.data)} func (j *Json) Map() (map[string]interface{}, error) { if m, ok := (j.data).(map[string]interface{}); ok { return m, nil func (j *Json) Array() ([]interface{}, error) { if a, ok := (j.data).([]interface{}); ok { return a, nil
son的反序列化方式有两种:
Use json.Unmarshal passing the entire response string
// func Unmarshal(data []byte, v interface{}) error
data, err := ioutil.ReadAll(resp.Body)
if err == nil && data != nil {
err = json.Unmarshal(data, value)
}
using json.NewDecoder.Decode
// func NewDecoder(r io.Reader) *Decoder
// func (dec *Decoder) Decode(v interface{}) error
err = json.NewDecoder(resp.Body).Decode(value)
这两种方法看似差不多,但有不同的应用场景
Use json.Decoder if your data is coming from an io.Reader stream, or you need to decode multiple values from a stream of data.
For the case of reading from an HTTP request, I’d pick json.Decoder since you’re obviously reading from a stream.
Use json.Unmarshal if you already have the JSON data in memory.
从文件中读入一个巨大的json数组用json.Decoder
json.Decoder会一个一个元素进行加载,不会把整个json数组读到内存里面
看完上述内容,你们掌握如何用golang源码分析simplejson的方法了吗?如果还想学到更多技能或想了解更多相关内容,欢迎关注创新互联行业资讯频道,感谢各位的阅读!