Golang十六进制字符串和byte数组互转
Posted kingram
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Golang十六进制字符串和byte数组互转相关的知识,希望对你有一定的参考价值。
Golang十六进制字符串和byte数组互转
需求
Golang十六进制字符串和byte数组互相转换,使用"encoding/hex"包
实现Demo
package main
import (
"encoding/hex"
"fmt"
)
func main() {
str := "ff68b4ff"
b, _ := hex.DecodeString(str)
encodedStr := hex.EncodeToString(b)
fmt.Printf("@@@@--bytes-->%02x
",b)
fmt.Printf("@@@@--string-->%s
",encodedStr)
}
运行结果
@@@@--string-->ff68b4ff
@@@@--bytes-->ff68b4ff
以上是关于Golang十六进制字符串和byte数组互转的主要内容,如果未能解决你的问题,请参考以下文章
使用Apache的Hex类实现Hex(16进制字符串和)和字节数组的互转