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