【Java】byte数组和String字符串互相转换

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

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

String str = "问题";  
byte[] srtbyte = null;  
try {  
    srtbyte = str.getBytes("UTF-8");  
    String res = new String(srtbyte,"UTF-8");  
    System.out.println(res);  
} catch (UnsupportedEncodingException e) {    
    e.printStackTrace();  
}
赞(52) 打赏
未经允许不得转载:优客志 » JAVA开发
分享到:

觉得文章有用就打赏一下文章作者

支付宝扫一扫打赏

微信扫一扫打赏