java中的String不属于基本数据类型,字符串是有一个个的字符组成的,字符数组就是字符串,因此,JDK提供了如下转换方法:
1. byte[]转换成String:
String str= new String(byte[] bytes);
2. String转换成byte[]:
byte[] dataArray="Hello World!".getBytes();
以上便是jdk的String工具类提供的转换方法。
1、string 转 byte[]
String str = "Hello";
byte[] srtbyte = str.getBytes();
2、byte[] 转 string
byte[] srtbyte;
String res = new String(srtbyte);
System.out.println(res);
3、设定编码方式相互转换
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();
}
纯手打,请采纳。
1 String转成byte数组
String str = "";
byte [] arr = str.getBytes();
2 byte数组变成String类型 ,注意arr是byte类型数组
str = new String(arr);
String a;
byte[] b;
假设有上述两个变量,
a = "abc";
b = a.getBytes();
或
a = new String(b);
就可以实现互相转换。