# package json
`import "encoding/json"`
json包实现了json对象的编解码,参见[RFC 4627](http://tools.ietf.org/html/rfc4627)。Json对象和go类型的映射关系请参见Marshal和Unmarshal函数的文档。
参见"JSON and Go"获取本包的一个介绍:[http://golang.org/doc/articles/json_and_go.html](http://golang.org/doc/articles/json_and_go.html)
## Index
* [type InvalidUTF8Error](#InvalidUTF8Error)
* [func (e \*InvalidUTF8Error) Error() string](#InvalidUTF8Error.Error)
* [type InvalidUnmarshalError](#InvalidUnmarshalError)
* [func (e \*InvalidUnmarshalError) Error() string](#InvalidUnmarshalError.Error)
* [type SyntaxError](#SyntaxError)
* [func (e \*SyntaxError) Error() string](#SyntaxError.Error)
* [type UnmarshalFieldError](#UnmarshalFieldError)
* [func (e \*UnmarshalFieldError) Error() string](#UnmarshalFieldError.Error)
* [type UnmarshalTypeError](#UnmarshalTypeError)
* [func (e \*UnmarshalTypeError) Error() string](#UnmarshalTypeError.Error)
* [type UnsupportedTypeError](#UnsupportedTypeError)
* [func (e \*UnsupportedTypeError) Error() string](#UnsupportedTypeError.Error)
* [type UnsupportedValueError](#UnsupportedValueError)
* [func (e \*UnsupportedValueError) Error() string](#UnsupportedValueError.Error)
* [type MarshalerError](#MarshalerError)
* [func (e \*MarshalerError) Error() string](#MarshalerError.Error)
* [type Number](#Number)
* [func (n Number) Int64() (int64, error)](#Number.Int64)
* [func (n Number) Float64() (float64, error)](#Number.Float64)
* [func (n Number) String() string](#Number.String)
* [type RawMessage](#RawMessage)
* [func (m \*RawMessage) MarshalJSON() ([]byte, error)](#RawMessage.MarshalJSON)
* [func (m \*RawMessage) UnmarshalJSON(data []byte) error](#RawMessage.UnmarshalJSON)
* [type Marshaler](#Marshaler)
* [type Unmarshaler](#Unmarshaler)
* [func Compact(dst \*bytes.Buffer, src []byte) error](#Compact)
* [func HTMLEscape(dst \*bytes.Buffer, src []byte)](#HTMLEscape)
* [func Indent(dst \*bytes.Buffer, src []byte, prefix, indent string) error](#Indent)
* [func Marshal(v interface{}) ([]byte, error)](#Marshal)
* [func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error)](#MarshalIndent)
* [func Unmarshal(data []byte, v interface{}) error](#Unmarshal)
* [type Decoder](#Decoder)
* [func NewDecoder(r io.Reader) \*Decoder](#NewDecoder)
* [func (dec \*Decoder) Buffered() io.Reader](#Decoder.Buffered)
* [func (dec \*Decoder) UseNumber()](#Decoder.UseNumber)
* [func (dec \*Decoder) Decode(v interface{}) error](#Decoder.Decode)
* [type Encoder](#Encoder)
* [func NewEncoder(w io.Writer) \*Encoder](#NewEncoder)
* [func (enc \*Encoder) Encode(v interface{}) error](#Encoder.Encode)
### Examples
* [Decoder](#example-Decoder)
* [Indent](#example-Indent)
* [Marshal](#example-Marshal)
* [RawMessage](#example-RawMessage)
* [Unmarshal](#example-Unmarshal)
## type [InvalidUTF8Error](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L220 "View Source")
```
type InvalidUTF8Error struct {
S string // 引发错误的完整字符串
}
```
Go 1.2之前版本,当试图编码一个包含非法utf-8序列的字符串时会返回本错误。Go 1.2及之后版本,编码器会强行将非法字节替换为unicode字符U+FFFD来使字符串合法。本错误已不会再出现,但出于向后兼容考虑而保留。
### func (\*InvalidUTF8Error) [Error](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L224 "View Source")
```
func (e *InvalidUTF8Error) Error() string
```
## type [InvalidUnmarshalError](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L116 "View Source")
```
type InvalidUnmarshalError struct {
Type reflect.Type
}
```
InvalidUnmarshalError用于描述一个传递给解码器的非法参数。(解码器的参数必须是非nil指针)
### func (\*InvalidUnmarshalError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L120 "View Source")
```
func (e *InvalidUnmarshalError) Error() string
```
## type [SyntaxError](https://github.com/golang/go/blob/master/src/encoding/json/scanner.go#L57 "View Source")
```
type SyntaxError struct {
Offset int64 // 在读取Offset个字节后出现错误
// 内含隐藏或非导出字段
}
```
SyntaxError表示一个json语法错误。
### func (\*SyntaxError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/scanner.go#L62 "View Source")
```
func (e *SyntaxError) Error() string
```
## type [UnmarshalFieldError](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L104 "View Source")
```
type UnmarshalFieldError struct {
Key string
Type reflect.Type
Field reflect.StructField
}
```
UnmarshalFieldError表示一个json对象的键指向一个非导出字段。(因此不能写入;已不再使用,出于兼容保留)
### func (\*UnmarshalFieldError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L110 "View Source")
```
func (e *UnmarshalFieldError) Error() string
```
## type [UnmarshalTypeError](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L92 "View Source")
```
type UnmarshalTypeError struct {
Value string // 描述json值:"bool", "array", "number -5"
Type reflect.Type // 不能转化为的go类型
}
```
UnmarshalTypeError表示一个json值不能转化为特定的go类型的值。
### func (\*UnmarshalTypeError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L97 "View Source")
```
func (e *UnmarshalTypeError) Error() string
```
## type [UnsupportedTypeError](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L197 "View Source")
```
type UnsupportedTypeError struct {
Type reflect.Type
}
```
UnsupportedTypeError表示试图编码一个不支持类型的值。
### func (\*UnsupportedTypeError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L201 "View Source")
```
func (e *UnsupportedTypeError) Error() string
```
## type [UnsupportedValueError](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L205 "View Source")
```
type UnsupportedValueError struct {
Value reflect.Value
Str string
}
```
### func (\*UnsupportedValueError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L210 "View Source")
```
func (e *UnsupportedValueError) Error() string
```
## type [MarshalerError](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L228 "View Source")
```
type MarshalerError struct {
Type reflect.Type
Err error
}
```
### func (\*MarshalerError) [Error](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L233 "View Source")
```
func (e *MarshalerError) Error() string
```
## type [Number](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L154 "View Source")
```
type Number string
```
Number类型代表一个json数字字面量。
### func (Number) [Int64](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L165 "View Source")
```
func (n Number) Int64() (int64, error)
```
将该数字作为int64类型返回。
### func (Number) [Float64](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L160 "View Source")
```
func (n Number) Float64() (float64, error)
```
将该数字作为float64类型返回。
### func (Number) [String](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L157 "View Source")
```
func (n Number) String() string
```
返回该数字的字面值文本表示。
## type [RawMessage](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L184 "View Source")
```
type RawMessage []byte
```
RawMessage类型是一个保持原本编码的json对象。本类型实现了Marshaler和Unmarshaler接口,用于延迟json的解码或者预计算json的编码。
Example
```
type Color struct {
Space string
Point json.RawMessage // delay parsing until we know the color space
}
type RGB struct {
R uint8
G uint8
B uint8
}
type YCbCr struct {
Y uint8
Cb int8
Cr int8
}
var j = []byte(`[
{"Space": "YCbCr", "Point": {"Y": 255, "Cb": 0, "Cr": -10}},
{"Space": "RGB", "Point": {"R": 98, "G": 218, "B": 255}}
]`)
var colors []Color
err := json.Unmarshal(j, &colors)
if err != nil {
log.Fatalln("error:", err)
}
for _, c := range colors {
var dst interface{}
switch c.Space {
case "RGB":
dst = new(RGB)
case "YCbCr":
dst = new(YCbCr)
}
err := json.Unmarshal(c.Point, dst)
if err != nil {
log.Fatalln("error:", err)
}
fmt.Println(c.Space, dst)
}
```
Output:
```
YCbCr &{255 0 -10}
RGB &{98 218 255}
```
### func (\*RawMessage) [MarshalJSON](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L187 "View Source")
```
func (m *RawMessage) MarshalJSON() ([]byte, error)
```
MarshalJSON返回\*m的json编码。
### func (\*RawMessage) [UnmarshalJSON](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L192 "View Source")
```
func (m *RawMessage) UnmarshalJSON(data []byte) error
```
UnmarshalJSON将\*m设为data的一个拷贝。
## type [Marshaler](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L191 "View Source")
```
type Marshaler interface {
MarshalJSON() ([]byte, error)
}
```
实现了Marshaler接口的类型可以将自身序列化为合法的json描述。
## type [Unmarshaler](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L86 "View Source")
```
type Unmarshaler interface {
UnmarshalJSON([]byte) error
}
```
实现了Unmarshaler接口的对象可以将自身的json描述反序列化。该方法可以认为输入是合法的json字符串。如果要在方法返回后保存自身的json数据,必须进行拷贝。
## func [Compact](https://github.com/golang/go/blob/master/src/encoding/json/indent.go#L11 "View Source")
```
func Compact(dst *bytes.Buffer, src []byte) error
```
Compact函数将json编码的src中无用的空白字符剔除后写入dst。
## func [HTMLEscape](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L160 "View Source")
```
func HTMLEscape(dst *bytes.Buffer, src []byte)
```
HTMLEscape 函数将json编码的src中的<、>、&、U+2028 和U+2029字符替换为\u003c、\u003e、\u0026、\u2028、\u2029 转义字符串,以便json编码可以安全的嵌入HTML的<script>标签里。因为历史原因,网络浏览器不支持在<script>标签中使用标准HTML转义, 因此必须使用另一种json编码方案。
## func [Indent](https://github.com/golang/go/blob/master/src/encoding/json/indent.go#L75 "View Source")
```
func Indent(dst *bytes.Buffer, src []byte, prefix, indent string) error
```
Indent函数将json编码的调整缩进之后写入dst。每一个json元素/数组都另起一行开始,以prefix为起始,一或多个indent缩进(数目看嵌套层数)。写入dst的数据起始没有prefix字符,也没有indent字符,最后也不换行,因此可以更好的嵌入其他格式化后的json数据里。
Example
```
type Road struct {
Name string
Number int
}
roads := []Road{
{"Diamond Fork", 29},
{"Sheep Creek", 51},
}
b, err := json.Marshal(roads)
if err != nil {
log.Fatal(err)
}
var out bytes.Buffer
json.Indent(&out, b, "=", "\t")
out.WriteTo(os.Stdout)
```
Output:
```
[
= {
= "Name": "Diamond Fork",
= "Number": 29
= },
= {
= "Name": "Sheep Creek",
= "Number": 51
= }
=]
```
## func [Marshal](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L131 "View Source")
```
func Marshal(v interface{}) ([]byte, error)
```
Marshal函数返回v的json编码。
Marshal函数会递归的处理值。如果一个值实现了Marshaler接口切非nil指针,会调用其MarshalJSON方法来生成json编码。nil指针异常并不是严格必需的,但会模拟与UnmarshalJSON的行为类似的必需的异常。
否则,Marshal函数使用下面的基于类型的默认编码格式:
布尔类型编码为json布尔类型。
浮点数、整数和Number类型的值编码为json数字类型。
字符串编码为json字符串。角括号"<"和">"会转义为"\u003c"和"\u003e"以避免某些浏览器吧json输出错误理解为HTML。基于同样的原因,"&"转义为"\u0026"。
数组和切片类型的值编码为json数组,但[]byte编码为base64编码字符串,nil切片编码为null。
结构体的值编码为json对象。每一个导出字段变成该对象的一个成员,除非:
```
- 字段的标签是"-"
- 字段是空值,而其标签指定了omitempty选项
```
空值是false、0、""、nil指针、nil接口、长度为0的数组、切片、映射。对象默认键字符串是结构体的字段名,但可以在结构体字段的标签里指定。结构体标签值里的"json"键为键名,后跟可选的逗号和选项,举例如下:
```
// 字段被本包忽略
Field int `json:"-"`
// 字段在json里的键为"myName"
Field int `json:"myName"`
// 字段在json里的键为"myName"且如果字段为空值将在对象中省略掉
Field int `json:"myName,omitempty"`
// 字段在json里的键为"Field"(默认值),但如果字段为空值会跳过;注意前导的逗号
Field int `json:",omitempty"`
```
"string"选项标记一个字段在编码json时应编码为字符串。它只适用于字符串、浮点数、整数类型的字段。这个额外水平的编码选项有时候会用于和javascript程序交互:
```
Int64String int64 `json:",string"`
```
如果键名是只含有unicode字符、数字、美元符号、百分号、连字符、下划线和斜杠的非空字符串,将使用它代替字段名。
匿名的结构体字段一般序列化为他们内部的导出字段就好像位于外层结构体中一样。如果一个匿名结构体字段的标签给其提供了键名,则会使用键名代替字段名,而不视为匿名。
Go结构体字段的可视性规则用于供json决定那个字段应该序列化或反序列化时是经过修正了的。如果同一层次有多个(匿名)字段且该层次是最小嵌套的(嵌套层次则使用默认go规则),会应用如下额外规则:
1)json标签为"-"的匿名字段强行忽略,不作考虑;
2)json标签提供了键名的匿名字段,视为非匿名字段;
3)其余字段中如果只有一个匿名字段,则使用该字段;
4)其余字段中如果有多个匿名字段,但压平后不会出现冲突,所有匿名字段压平;
5)其余字段中如果有多个匿名字段,但压平后出现冲突,全部忽略,不产生错误。
对匿名结构体字段的管理是从go1.1开始的,在之前的版本,匿名字段会直接忽略掉。
映射类型的值编码为json对象。映射的键必须是字符串,对象的键直接使用映射的键。
指针类型的值编码为其指向的值(的json编码)。nil指针编码为null。
接口类型的值编码为接口内保持的具体类型的值(的json编码)。nil接口编码为null。
通道、复数、函数类型的值不能编码进json。尝试编码它们会导致Marshal函数返回UnsupportedTypeError。
Json不能表示循环的数据结构,将一个循环的结构提供给Marshal函数会导致无休止的循环。
Example
```
type ColorGroup struct {
ID int
Name string
Colors []string
}
group := ColorGroup{
ID: 1,
Name: "Reds",
Colors: []string{"Crimson", "Red", "Ruby", "Maroon"},
}
b, err := json.Marshal(group)
if err != nil {
fmt.Println("error:", err)
}
os.Stdout.Write(b)
```
Output:
```
{"ID":1,"Name":"Reds","Colors":["Crimson","Red","Ruby","Maroon"]}
```
## func [MarshalIndent](https://github.com/golang/go/blob/master/src/encoding/json/encode.go#L141 "View Source")
```
func MarshalIndent(v interface{}, prefix, indent string) ([]byte, error)
```
MarshalIndent类似Marshal但会使用缩进将输出格式化。
## func [Unmarshal](https://github.com/golang/go/blob/master/src/encoding/json/decode.go#L67 "View Source")
```
func Unmarshal(data []byte, v interface{}) error
```
Unmarshal函数解析json编码的数据并将结果存入v指向的值。
Unmarshal和Marshal做相反的操作,必要时申请映射、切片或指针,有如下的附加规则:
要将json数据解码写入一个指针,Unmarshal函数首先处理json数据是json字面值null的情况。此时,函数将指针设为nil;否则,函数将json数据解码写入指针指向的值;如果指针本身是nil,函数会先申请一个值并使指针指向它。
要将json数据解码写入一个结构体,函数会匹配输入对象的键和Marshal使用的键(结构体字段名或者它的标签指定的键名),优先选择精确的匹配,但也接受大小写不敏感的匹配。
要将json数据解码写入一个接口类型值,函数会将数据解码为如下类型写入接口:
```
Bool 对应JSON布尔类型
float64 对应JSON数字类型
string 对应JSON字符串类型
[]interface{} 对应JSON数组
map[string]interface{} 对应JSON对象
nil 对应JSON的null
```
如果一个JSON值不匹配给出的目标类型,或者如果一个json数字写入目标类型时溢出,Unmarshal函数会跳过该字段并尽量完成其余的解码操作。如果没有出现更加严重的错误,本函数会返回一个描述第一个此类错误的详细信息的UnmarshalTypeError。
JSON的null值解码为go的接口、指针、切片时会将它们设为nil,因为null在json里一般表示“不存在”。 解码json的null值到其他go类型时,不会造成任何改变,也不会产生错误。
当解码字符串时,不合法的utf-8或utf-16代理(字符)对不视为错误,而是将非法字符替换为unicode字符U+FFFD。
Example
```
var jsonBlob = []byte(`[
{"Name": "Platypus", "Order": "Monotremata"},
{"Name": "Quoll", "Order": "Dasyuromorphia"}
]`)
type Animal struct {
Name string
Order string
}
var animals []Animal
err := json.Unmarshal(jsonBlob, &animals)
if err != nil {
fmt.Println("error:", err)
}
fmt.Printf("%+v", animals)
```
Output:
```
[{Name:Platypus Order:Monotremata} {Name:Quoll Order:Dasyuromorphia}]
```
## type [Decoder](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L14 "View Source")
```
type Decoder struct {
// 内含隐藏或非导出字段
}
```
Decoder从输入流解码json对象
Example
```
const jsonStream = `
{"Name": "Ed", "Text": "Knock knock."}
{"Name": "Sam", "Text": "Who's there?"}
{"Name": "Ed", "Text": "Go fmt."}
{"Name": "Sam", "Text": "Go fmt who?"}
{"Name": "Ed", "Text": "Go fmt yourself!"}
`
type Message struct {
Name, Text string
}
dec := json.NewDecoder(strings.NewReader(jsonStream))
for {
var m Message
if err := dec.Decode(&m); err == io.EOF {
break
} else if err != nil {
log.Fatal(err)
}
fmt.Printf("%s: %s\n", m.Name, m.Text)
}
```
Output:
```
Ed: Knock knock.
Sam: Who's there?
Ed: Go fmt.
Sam: Go fmt who?
Ed: Go fmt yourself!
```
### func [NewDecoder](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L26 "View Source")
```
func NewDecoder(r io.Reader) *Decoder
```
NewDecoder创建一个从r读取并解码json对象的\*Decoder,解码器有自己的缓冲,并可能超前读取部分json数据。
### func (\*Decoder) [Buffered](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L64 "View Source")
```
func (dec *Decoder) Buffered() io.Reader
```
Buffered方法返回保存在dec缓存里数据的读取器,该返回值在下次调用Decode方法之前有效。
### func (\*Decoder) [UseNumber](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L32 "View Source")
```
func (dec *Decoder) UseNumber()
```
UseNumber方法将dec设置为当接收端是interface{}接口时将json数字解码为Number类型而不是float64类型
### func (\*Decoder) [Decode](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L39 "View Source")
```
func (dec *Decoder) Decode(v interface{}) error
```
Decode从输入流读取下一个json编码值并保存在v指向的值里,参见Unmarshal函数的文档获取细节信息。
## type [Encoder](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L140 "View Source")
```
type Encoder struct {
// 内含隐藏或非导出字段
}
```
Encoder将json对象写入输出流。
### func [NewEncoder](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L147 "View Source")
```
func NewEncoder(w io.Writer) *Encoder
```
NewEncoder创建一个将数据写入w的\*Encoder。
### func (\*Encoder) [Encode](https://github.com/golang/go/blob/master/src/encoding/json/stream.go#L156 "View Source")
```
func (enc *Encoder) Encode(v interface{}) error
```
Encode将v的json编码写入输出流,并会写入一个换行符,参见Marshal函数的文档获取细节信息。
- 库
- package achive
- package tar
- package zip
- package bufio
- package builtin
- package bytes
- package compress
- package bzip2
- package flate
- package gzip
- package lzw
- package zlib
- package container
- package heap
- package list
- package ring
- package crypto
- package aes
- package cipher
- package des
- package dsa
- package ecdsa
- package elliptic
- package hmac
- package md5
- package rand
- package rc4
- package rsa
- package sha1
- package sha256
- package sha512
- package subtle
- package tls
- package x509
- package pkix
- package database
- package sql
- package driver
- package encoding
- package ascii85
- package asn1
- package base32
- package base64
- package binary
- package csv
- package gob
- package hex
- package json
- package pem
- package xml
- package errors
- package expvar
- package flag
- package fmt
- package go
- package doc
- package format
- package parser
- package printer
- package hash
- package adler32
- package crc32
- package crc64
- package fnv
- package html
- package template
- package image
- package color
- package palette
- package draw
- package gif
- package jpeg
- package png
- package index
- package suffixarray
- package io
- package ioutil
- package log
- package syslog
- package math
- package big
- package cmplx
- package rand
- package mime
- package multipart
- package net
- package http
- package cgi
- package cookiejar
- package fcgi
- package httptest
- package httputil
- package pprof
- package mail
- package rpc
- package jsonrpc
- package smtp
- package textproto
- package url
- package os
- package exec
- package signal
- package user
- package path
- package filepath
- package reflect
- package regexp
- package runtime
- package cgo
- package debug
- package pprof
- package race
- package sort
- package strconv
- package strings
- package sync
- package atomic
- package text
- package scanner
- package tabwriter
- package template
- package time
- package unicode
- package utf16
- package utf8
- package unsafe