我使用Golang HTTP请求获取json输出如下。 我尝试访问的网络服务是Micrsoft Translator https://msdn.microsoft.com/en-us/library/dn876735.aspx
//Data struct of TransformTextResponse
type TransformTextResponse struct {
ErrorCondition int `json:"ec"` // A positive number representing an error condition
ErrorDescriptive string `json:"em"` // A descriptive error message
Sentence string `json:"sentence"` // transformed text
}
//some code ....
body, err := ioutil.ReadAll(response.Body)
defer response.Body.Close()
if err != nil {
return "", tracerr.Wrap(err)
}
transTransform = TransformTextResponse{}
err = json.Unmarshal(body, &transTransform)
if err != nil {
return "", tracerr.Wrap(err)
}
我从invalid character 'ï' looking for beginning of value
所以,我尝试将body
打印为字符串fmt.Println(string(body))
,它显示:
{"ec":0,"em":"OK","sentence":"This is too strange i just want to go home soon"}
似乎数据没有任何问题,所以我试图通过jason.Marshal
transTransform := TransformTextResponse{}
transTransform.ErrorCondition = 0
transTransform.ErrorDescriptive = "OK"
transTransform.Sentence = "This is too strange i just want to go home soon"
jbody, _ := json.Marshal(transTransform)
我发现原始数据可能有问题,所以我尝试比较[]byte
格式的两个数据。
来自response.Body
的数据:
[239 187 191 123 34 101 99 34 58 48 44 34 101 109 34 58 34 79 75 34 44 34 115 101 110 116 101 110 99 101 34 58 34 84 104 105 115 32 105 115 32 116 111 111 32 115 116 114 97 110 103 101 32 105 32 106 117 115 116 32 119 97 110 116 32 116 111 32 103 111 32 104 111 109 101 32 115 111 111 110 34 125]
来自json.Marshal
[123 34 101 99 34 58 48 44 34 101 109 34 58 34 79 75 34 44 34 115 101 110 116 101 110 99 101 34 58 34 84 104 105 115 32 105 115 32 116 111 111 32 115 116 114 97 110 103 101 32 105 32 106 117 115 116 32 119 97 110 116 32 116 111 32 103 111 32 104 111 109 101 32 115 111 111 110 34 125]
知道如何解析这个response.Body
并将其解组为数据结构吗?
答案 0 :(得分:19)
服务器正在向您发送带有Byte Order Mark (BOM)的UTF-8文本字符串。 BOM标识文本是UTF-8编码的,但在解码之前应将其删除。
可以使用以下行(使用package "bytes"):
完成此操作body = bytes.TrimPrefix(body, []byte("\xef\xbb\xbf")) // Or []byte{239, 187, 191}
PS。引用ï
的错误是因为解释为ISO-8859-1字符串的UTF-8 BOM将生成字符
。