前言:
此刻小伙伴们对“byte转stringjava”都比较关怀,同学们都想要了解一些“byte转stringjava”的相关文章。那么小编也在网上网罗了一些关于“byte转stringjava””的相关文章,希望看官们能喜欢,小伙伴们一起来学习一下吧!golang 中的string 和 []byte 相互转换
string to [] byte
var strhello string = "hello world" var bytehello []byte = []byte(strhello) fmt.Printf("%s [%x]\n", bytehello, bytehello)
输出:
hello world [68656c6c6f20776f726c64]
[]byte to string
var bytehello []byte = []byte{'h', 'e', 'l', 'l', 'o', ' ', 'w', 'o', 'r', 'l', 'd'} var stringhello string = string(bytehello[:]) fmt.Printf("%s [%x]\n", stringhello, stringhello)
输出:
hello world [68656c6c6f20776f726c64]
标签: #byte转stringjava