-
Notifications
You must be signed in to change notification settings - Fork 0
20201205关于encoding.binary hex json的探讨(2)
ziyouzy edited this page Dec 5, 2020
·
1 revision
把一个“临时类型”(如int,无论是10进制,16进制、string(utf8协议to2进制协议))---binary包
把一个“临时类型”(如int, 无论是10进制,2进制、string(utf8协议to16进制协议))---hex包
把一个“临时类型”(结构体“协议”to"json规范协议”)---json包
src := []byte("abc123") // 准备数据
dst := make([]byte,hex.EncodedLen(len(src))) // 计算转换为16进制后的长度
hex.Encode(dst,src) // 转码