码迷,mamicode.com
首页 > 其他好文 > 详细

byte[] 与字符串转换

时间:2014-11-04 06:42:25      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:ar   os   for   sp   new   app   字符串   print   string   

//取值之后进行
StringBuffer buffer=new StringBuffer();
for (int i = 0; i < enBytes.length; i++)
{
if(i!=0)
{
buffer.append(",");
}
buffer.append(enBytes[i]);
}
System.out.println("加密后的密文:" + buffer.toString());

String[] temp=buffer.toString().split(",");
byte[] b = new byte[temp.length];
for (int i = 0; i < temp.length; i++)
{
b[i] = Byte.parseByte(temp[i]);
}
String s1 = new String(enBytes);

byte[] 与字符串转换

标签:ar   os   for   sp   new   app   字符串   print   string   

原文地址:http://www.cnblogs.com/heling/p/4072641.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!