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

byte与base64字串换转

时间:2014-09-25 14:04:28      阅读:205      评论:0      收藏:0      [点我收藏+]

标签:io   ar   sp   on   c   r   new   bs   as   

public byte[] base64ToByte(String strBase64){
  if(strBase64==null)return null;
  byte[] bytes = null;
  try {
  BASE64Decoder dec = new BASE64Decoder();
  bytes = dec.decodeBuffer(strBase64);
  }
  catch(Exception ex){
  ex.printStackTrace();
  }
  return bytes;
}

 

public String byteToBase64(byte[] aryByte){
  if(aryByte==null)return "";
    String strBase64 = "";
  try {
    BASE64Encoder enc = new BASE64Encoder();
    strBase64 = enc.encode(aryByte);
  }
  catch(Exception ex){
    ex.printStackTrace();
  }
  return strBase64;
}

byte与base64字串换转

标签:io   ar   sp   on   c   r   new   bs   as   

原文地址:http://www.cnblogs.com/xiaohaizhuimeng/p/3992357.html

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