码迷,mamicode.com
首页 > 其他好文 > 详细

Golang中的[]byte与16进制(String)之间相互转换

时间:2018-05-03 15:31:44      阅读:2459      评论:0      收藏:0      [点我收藏+]

标签:ring   str   tostring   []   golang   hello   bytes   targe   ola   

[]byte -> String(16进制)

1 src := []byte("Hello")
2 encodedStr := hex.EncodeToString(src)
3 // 注意"Hello"与"encodedStr"不相等,encodedStr是用字符串来表示16进制

 

String -> []byte

1 test, _ := hex.DecodeString(encodedStr)
2 fmt.Println(bytes.Compare(test, src)) // 0

 

原文:ttps://blog.csdn.net/jason_cuijiahui/article/details/79418557

Golang中的[]byte与16进制(String)之间相互转换

标签:ring   str   tostring   []   golang   hello   bytes   targe   ola   

原文地址:https://www.cnblogs.com/leaves1024/p/8985261.html

(1)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!