将golangbyte转换为字符串:package mainimport ("fmt")func main() {data := [4]byte{0x31, 0x32, 0x33, 0x34}str := string(data[:])fmt.Println(str)}