java 读取图片并转化为二进制字符串

本文介绍如何使用Java将图片文件转换为Base64编码的字符串,包括处理大文件时避免内存溢出的方法,通过分块读取并进行Base64编码,最后将所有分块合并成完整的Base64字符串。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

本例子的目的在于测试往oracle数据库中插入blob字段

//以下代码源于:https://www.cnblogs.com/ywlx/p/4544179.html

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();
    }

 

转载于:https://www.cnblogs.com/lzfhope/p/java_read_binary_file.html

### Java 中实现十进制到二进制的转换 #### 使用内置方法 Java 提供了简便的方法来执行十进制到二进制的转换。`Integer.toBinaryString()` 函数可以直接用于此目的,它接受一个整数值作为参数返回对应的二进制字符串表示。 ```java public class DecimalToBinaryExample { public static void main(String[] args) { int decimalNumber = 10; String binaryString = Integer.toBinaryString(decimalNumber); System.out.println("The binary representation of " + decimalNumber + " is: " + binaryString); } } ``` 这段代码展示了如何使用 `Integer.toBinaryString(int i)` 来获取给定整数的二进制形式[^1]。 #### 自定义算法实现 除了依赖于内建函数外,还可以通过编写自己的逻辑来进行这种类型的转换。这通常涉及到除以2取余法——即不断将输入数字除以2直到其变为零为止,在每次迭代过程中记录下当前步骤中的余数;最后得到的结果就是原数字按位反转后的二进制表达式。 ```java public class CustomDecimalToBinaryConverter { private static StringBuilder convertToBinary(int number){ if (number == 0 || number == 1) return new StringBuilder().append(number); return convertToBinary(number / 2).append(number % 2); } public static void main(String[] args) { int num = 9; // Example input System.out.print("Converting the decimal value " + num + " to binary results in "); System.out.println(convertToBinary(num)); } } ``` 上述例子中展示了一个递归版本的自定义转换器,它可以有效地处理正整数向二进制串的变化过程[^3]。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值