Base64工具类及2点问题


最近公司做通行管理这块,设备要求图片传base64字符串,就分享下这个工具类,以及里面的一些问题吧,直接上码。

package com.xiaotian.bus.util;
import lombok.extern.slf4j.Slf4j;
import org.apache.commons.fileupload.FileItem;
import org.apache.commons.fileupload.disk.DiskFileItem;
import org.apache.commons.io.IOUtils;
import org.springframework.mock.web.MockMultipartFile;
import org.springframework.web.multipart.MultipartFile;
import org.springframework.web.multipart.commons.CommonsMultipartFile;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import java.io.*;
import java.net.HttpURLConnection;
import java.net.URL;
import java.nio.file.Files;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;

/**
 * base64文件工具类
 * @author zwsky
 */
@Slf4j
public class FileBase64Util {

    /**
     * 本地文件(图片、excel等)转换成Base64字符串
     *
     * @param imgPath
     */
    public static String convertFileToBase64(String imgPath) {
        byte[] data = null;
        // 读取图片字节数组
        try {
            InputStream in = new FileInputStream(imgPath);
            log.info("文件大小(字节)="+in.available());
            data = new byte[in.available()];
            in.read(data);
            in.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 对字节数组进行Base64编码,得到Base64编码的字符串
        BASE64Encoder encoder = new BASE64Encoder();
        String base64Str = encoder.encode(data).replaceAll("[\\s*\t\n\r]", "");

        Integer base64Len = base64Str.length();
        log.info("----base64 length:{}",base64Len);

        return base64Str;
    }

    /**
     * 网络地址文件转为base64字符串相关信息
     * @param netUrl 网络地址
     * @return map对象
     * @throws Exception
     */
    public static Map<String,String> netUrlToBase64(String netUrl) throws Exception {
        Map<String,String> mp = null;
        URL url = new URL(netUrl);
        //将图片文件转化为字节数组字符串,并对其进行Base64编码处理
        log.info("图片的路径为:" + url.toString());
        String fileType = netUrl.substring(netUrl.lastIndexOf("."));
        //打开链接
        HttpURLConnection conn = null;
        try {
            conn = (HttpURLConnection) url.openConnection();
            //设置请求方式为"GET"
            conn.setRequestMethod("GET");
            //超时响应时间为5秒
            conn.setConnectTimeout(5 * 1000);
            //通过输入流获取图片数据
            InputStream inStream = conn.getInputStream();
            //得到图片的二进制数据,以二进制封装得到数据,具有通用性
            ByteArrayOutputStream outStream = new ByteArrayOutputStream();
            //创建一个Buffer字符串
            byte[] buffer = new byte[1024];
            //每次读取的字符串长度,如果为-1,代表全部读取完毕
            int len = 0;
            //使用一个输入流从buffer里把数据读取出来
            while ((len = inStream.read(buffer)) != -1) {
                //用输出流往buffer里写入数据,中间参数代表从哪个位置开始读,len代表读取的长度
                outStream.write(buffer, 0, len);
            }
            int size1 = inStream.available();
            //关闭输入流
            inStream.close();
            byte[] data = outStream.toByteArray();
            Long size = Long.parseLong(String.valueOf(outStream.size()));

            log.info("--outSize:{}----inSize:{}",size,size1);
            //对字节数组Base64编码
            BASE64Encoder encoder = new BASE64Encoder();
            //根据RFC822规定,BASE64Encoder编码每76个字符,还需要加上一个回车换行
            //部分Base64编码的java库还按照这个标准实行
            String base64 = encoder.encode(data).replaceAll("[\\s*\t\n\r]", "");
            log.info("网络文件[{}]编码成base64字符串:[{}]"+url.toString()+base64);
            //Integer base64Len = base64.length();

            //1.获取base64字符串长度(不含data:audio/wav;base64,文件头)
            Integer base64Len = base64.length();
/*
            //2.获取字符串的尾巴的最后10个字符,用于判断尾巴是否有等号,正常生成的base64文件'等号'不会超过4个
            String tail = base64.substring(base64Len - 10);

            //3.找到等号,把等号也去掉,(等号其实是空的意思,不能算在文件大小里面)
            int equalIndex = tail.indexOf("=");
            if(equalIndex > 0) {
                base64Len = base64Len - (10 - equalIndex);
            }


            Integer base64Len = base64.length();
            int fileSize = base64Len-(base64Len/8)*2;
            log.info("----base64 length:{}",base64Len);


            //1.获取base64字符串长度(不含data:audio/wav;base64,文件头)
            int size0 = base64.length();

            //2.获取字符串的尾巴的最后10个字符,用于判断尾巴是否有等号,正常生成的base64文件'等号'不会超过4个
            String tail = base64.substring(size0-10);

            //3.找到等号,把等号也去掉,(等号其实是空的意思,不能算在文件大小里面)
            int equalIndex = tail.indexOf("=");
            if(equalIndex > 0) {
                size0 = size0 - (10 - equalIndex);
            }

            //4.计算后得到的文件流大小,单位为字节
            fileSize = (int) Math.round((size0 -( (double)size0 / 8 ) * 2));
*/

            //返回Base64编码过的字节数组字符串
            mp = new HashMap<>(3);
            mp.put("fileType",fileType);
            mp.put("base64",base64);
            mp.put("size",String.valueOf(base64Len));
            //mp.put("size",String.valueOf(fileSize));
        } catch (IOException e) {
            e.printStackTrace();
            throw new Exception("图片上传失败,请联系客服!");
        }finally {
            return mp;
        }
    }

    /**
     * 网络文件转base64字符串
     * @param netUrl 网络url
     * @return base64字符串
     * @throws Exception
     */
    public static String netFileToBase64(String netUrl) throws Exception {
        URL url = new URL(netUrl);
        //将图片文件转化为字节数组字符串,并对其进行Base64编码处理
        log.info("图片的路径为:" + url.toString());
        //打开链接
        HttpURLConnection conn = null;
        try {
            conn = (HttpURLConnection) url.openConnection();
            //设置请求方式为"GET"
            conn.setRequestMethod("GET");
            //超时响应时间为5秒
            conn.setConnectTimeout(5 * 1000);
            //通过输入流获取图片数据
            InputStream inStream = conn.getInputStream();
            //得到图片的二进制数据,以二进制封装得到数据,具有通用性
            ByteArrayOutputStream outStream = new ByteArrayOutputStream();
            //创建一个Buffer字符串
            byte[] buffer = new byte[1024];
            //每次读取的字符串长度,如果为-1,代表全部读取完毕
            int len = 0;
            //使用一个输入流从buffer里把数据读取出来
            while ((len = inStream.read(buffer)) != -1) {
                //用输出流往buffer里写入数据,中间参数代表从哪个位置开始读,len代表读取的长度
                outStream.write(buffer, 0, len);
            }
            //关闭输入流
            inStream.close();
            byte[] data = outStream.toByteArray();
            //对字节数组Base64编码
            BASE64Encoder encoder = new BASE64Encoder();
            String base64 = encoder.encode(data).replaceAll("[\\s*\t\n\r]", "");
            log.info("网络文件[{}]编码成base64字符串:[{}]"+url.toString()+base64);
            //返回Base64编码过的字节数组字符串
            return base64;
        } catch (IOException e) {
            e.printStackTrace();
            throw new Exception("图片上传失败,请联系客服!");
        }
    }


    /**
     * 将base64字符串,生成文件
     * @param fileBase64String base64文件字符串
     * @param filePath 路径
     * @param fileName 文件名称
     * @return 文件
     */
    public static File convertBase64ToFile(String fileBase64String, String filePath, String fileName) {
        BufferedOutputStream bos = null;
        FileOutputStream fos = null;
        File file = null;
        try {
            File dir = new File(filePath);
            //判断文件目录是否存在
            if (!dir.exists() && dir.isDirectory()) {
                dir.mkdirs();
            }

            BASE64Decoder decoder = new BASE64Decoder();
            byte[] bfile = decoder.decodeBuffer(fileBase64String);

            file = new File(filePath + File.separator + fileName);
            fos = new FileOutputStream(file);
            bos = new BufferedOutputStream(fos);
            bos.write(bfile);
            return file;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        } finally {
            if (bos != null) {
                try {
                    bos.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }
            if (fos != null) {
                try {
                    fos.close();
                } catch (IOException e1) {
                    e1.printStackTrace();
                }
            }
        }
    }

    public static void main(String[] args) throws Exception {
        String filePath = "C:\\Users\\zwsky\\Desktop\\testImg\\22.jpg";
        String base64Str = FileBase64Util.convertFileToBase64(filePath);
        log.info("----base64Str:{}",base64Str);
        log.info("------");

        String localFilePath = "C:\\Users\\zwsky\\Desktop\\testImg";
        FileBase64Util.convertBase64ToFile(base64Str,localFilePath,"zwtest.JPG");
        log.info("------end---------");

    }
}

问题
对接的文档说传图片的base64字符串,还要传大小。也没说是这个图片文件流的大小,还是其他什么。害我一顿操作猛如虎,但是每次返回都是图片大小不匹配。然后就考虑是不是本生这个图片转base64字符串后的文件大小,又考虑什么转换最后又=,不算大小等等,代码里面的没有删除,大家可以看看注释,写了好几种方法求大小。

2、BASE64Encoder转base64字符串有换行

查询资料说:

根据RFC822规定,BASE64Encoder编码每76个字符,还需要加上一个回车换行
部分Base64编码的java库还按照这个标准实行

BASE64Encoder是JDK自带的,我用的是1.8的jdk。那么这里可见对接方不一定用的自带的,所以我得处理掉所有换行

基本上就这些,这里再说一嘴,实际上不仅仅图片可以转base64字符串,其他文件也是可以。

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 打赏
    打赏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

肥仔哥哥1930

来一波支持,吃不了亏上不了当

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值