java里面byte数组和String字符串怎么转换

2024-11-26 07:21:41
推荐回答(5个)
回答1:

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

//当然还有可以设定编码方式

String str = "hello";
byte[] srtbyte = null;
try {

srtbyte = str.getBytes("UTF-8");

String res = new String(srtbyte,"UTF-8");

System.out.println(res);

} catch (UnsupportedEncodingException e) {

// TODO Auto-generated catch block

e.printStackTrace();

}

回答2:

String s1 = "abc";
//String转byte数组
byte[] b = s1.getBytes();
//byte数组转String
String s2 = new String(b);

回答3:

String类有个getBytes方法, 这个方法有很多重载的方法, String类还有new String(byte[] , String)这样的方法, 也有很多个重载的

回答4:

byte toString 然后拼接、。。。。。

回答5:

已经有人回答了啊!
转自:
http://zhidao.baidu.com/question/125561229.html?loc_ans=391412559