java里面byte数组和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();
}
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);
1 String转成byte数组
String str = "";
byte [] arr = str.getBytes();
2 byte数组变成String类型 ,注意arr是byte类型数组
str = new String(arr);
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
2016-03-18
展开全部
String a;
byte[] b;
假设有上述两个变量,
a = "abc";
b = a.getBytes();
或
a = new String(b);
就可以实现互相转换。
byte[] b;
假设有上述两个变量,
a = "abc";
b = a.getBytes();
或
a = new String(b);
就可以实现互相转换。
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询