iOS 中一个字符串怎么转换成Byte

大哥大姐们有没有人讲详细点的,我想问一下,iOS 中一个字符串怎么转换成Byte
最新回答
人生如梦梦如烟

2023-09-08 18:53:01

String str = "Hello"; byte[] srtbyte = str.getBytes(); 2、byte[] 转 string byte[] srtbyte; String res = new String(srtbyte); System.out.println(res);