温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

如何在java中将图片转化为二进制字符串

发布时间:2021-02-22 17:38:28 来源:亿速云 阅读:280 作者:戴恩恩 栏目:编程语言

这篇文章主要介绍了如何在java中将图片转化为二进制字符串,此处给大家介绍的非常详细,对大家的学习或工作具有一定的参考价值,需要的朋友可以参考下:

public static String getImgStr(String imgFile){
  //将图片文件转化为字节数组字符串,并对其进行Base64编码处理
  
  InputStream in = null;
  byte[] data = null;
  //读取图片字节数组
  try
  {
   in = new FileInputStream(imgFile);  
   data = new byte[in.available()];
   in.read(data);
   in.close();
  }
  catch (IOException e)
  {
   e.printStackTrace();
  }
  return new String(Base64.encodeBase64(data));
 }

--

利用以上的思路写的一个测试

public class ReadImageTest {
 public static void main(String[] args) throws IOException {
   FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png"));   
   String picStr="";
   byte[] read = null;
   int len = 0;
   read= new byte[fis.available()];
   fis.read(read);
   String baseStr= Base64.getEncoder().encodeToString(read);
   //System.out.println( baseStr);
   byte[] op= Base64.getDecoder().decode(baseStr);
   // System.out.println(new String(op));
   FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\1.jpg"));
   fos.write(op,0,op.length );
   fos.flush();
   fos.close();
 }
}

但是available()有一定的限制。

为了稳妥,严重建议采取以下方式:

public static void imageToBase64Str() throws IOException{
   FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png"));
   byte[] read = new byte[1024];
   int len = 0;
   List<byte[]> blist=new ArrayList<byte[]>();
   int ttllen=0;
   while((len = fis.read(read))!= -1){
    byte[] dst=new byte[len];
    System.arraycopy(read, 0, dst, 0, len);
    ttllen+=len;
    blist.add(dst);
   }
   fis.close();
   byte[] dstByte=new byte[ttllen];
   int pos=0;
   for (int i=0;i<blist.size();i++){
    if (i==0){
     pos=0;
    }
    else{
    pos+=blist.get(i-1).length; 
    }
    System.arraycopy(blist.get(i), 0, dstByte, pos, blist.get(i).length);
   }
   String baseStr= Base64.getEncoder().encodeToString(dstByte);
   byte[] op= Base64.getDecoder().decode(baseStr);
   FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\2.jpg"));
   fos.write(op,0,op.length );
   fos.flush();
   fos.close();
 }

到此这篇关于如何在java中将图片转化为二进制字符串的文章就介绍到这了,更多相关的内容请搜索亿速云以前的文章或继续浏览下面的相关文章希望大家以后多多支持亿速云!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

AI