当前位置: 技术问答>java相关
问一个字符串转换问题!
来源: 互联网 发布时间:2015-07-24
本文导语: 怎样把一个转化为字节数组。 比如 String str=""; str=str+"hello"+" "+"my"+"nr"+"friend" 转化为字节数组byte[] b; | str=str+"hello"+" "+"my"+"nr"+"friend"; byte[] bb = str.getBytes();
怎样把一个转化为字节数组。
比如 String str="";
str=str+"hello"+" "+"my"+"nr"+"friend"
转化为字节数组byte[] b;
比如 String str="";
str=str+"hello"+" "+"my"+"nr"+"friend"
转化为字节数组byte[] b;
|
str=str+"hello"+" "+"my"+"nr"+"friend";
byte[] bb = str.getBytes();
byte[] bb = str.getBytes();