//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();
}
String s1 = "abc";
//String转byte数组
byte[] b = s1.getBytes();
//byte数组转String
String s2 = new String(b);
String类有个getBytes方法, 这个方法有很多重载的方法, String类还有new String(byte[] , String)这样的方法, 也有很多个重载的
byte toString 然后拼接、。。。。。
已经有人回答了啊!
转自:
http://zhidao.baidu.com/question/125561229.html?loc_ans=391412559