【JAVA】附件工具类 文件转base64、文件输入流转为base64、通过base64下载文件、通过图片src下载图片

import sun.misc.BASE64Decoder;

import java.io.*;
import java.net.URL;
import java.net.URLConnection;
import java.nio.file.Files;
import java.nio.file.Paths;
import java.time.LocalDate;
import java.time.format.DateTimeFormatter;
import java.util.Base64;
import java.util.HashMap;
import java.util.Map;

/**
 * @author yuanzeyu
 * @since 2021/12/28 15:48
 */
public class FileUtils {

    private static final String filePathRoot = "D:\\yzy";

    /**
     * 文件转base64
     *
     * @param filePath
     * @return
     */
    public static String encryptToBase64(String filePath) {
        if (filePath == null) {
            return null;
        }
        try {
            byte[] b = Files.readAllBytes(Paths.get(filePath));
            return Base64.getEncoder().encodeToString(b);
        } catch (IOException e) {
            e.printStackTrace();
        }

        return null;
    }

    /**
     * 将文件输入流转为base64
     */
    public static String getBase64FromInputStream(InputStream in) {
        // 将图片文件转化为字节数组字符串,并对其进行Base64编码处理
        byte[] data = null;
        // 读取图片字节数组
        try {
            ByteArrayOutputStream swapStream = new ByteArrayOutputStream();
            byte[] buff = new byte[100];
            int rc = 0;
            while ((rc = in.read(buff, 0, 100)) > 0) {
                swapStream.write(buff, 0, rc);
            }
            data = swapStream.toByteArray();
        } catch (IOException e) {
            e.printStackTrace();
        } finally {
            if (in != null) {
                try {
                    in.close();
                } catch (IOException e) {
                    e.printStackTrace();
                }
            }
        }
        return Base64.getEncoder().encodeToString(data);
    }

    public static File getFileFromBase64(String base, String suffix) {
        String base64Pic = base;
        File file = null;
        Map<String, Object> resultMap = new HashMap<String, Object>();
        // 图像数据为空
        if (base64Pic == null) {
            resultMap.put("resultCode", 0);
            resultMap.put("msg", "图片为空");
        } else {
            try {
                BASE64Decoder decoder = new BASE64Decoder();
                //前台在用Ajax传base64值的时候会把base64中的+换成空格,所以需要替换回来。
                String baseValue = base64Pic.replaceAll(" ", "+");
                //去除base64中无用的部分
                byte[] b = decoder.decodeBuffer(baseValue.replace("data:image/jpeg;base64,", ""));
                base64Pic = base64Pic.replace("base64,", "");
                String nowDateStr = LocalDate.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
                String imgFilePath = filePathRoot + "\\" + nowDateStr;
                File file1 = new File(imgFilePath);
                //判断文件路径下的文件夹是否存在,不存在则创建
                if (!file1.exists() && !file1.isDirectory()) {
                    file1.mkdirs();
                }
                for (int i = 0; i < b.length; ++i) {
                    // 调整异常数据
                    if (b[i] < 0) {
                        b[i] += 256;
                    }
                }
                file = new File(imgFilePath + "\\" + System.currentTimeMillis() + "." + suffix);
                // 如果要返回file文件这边return就可以了,存到临时文件中
                OutputStream out = new FileOutputStream(file.getPath());
                out.write(b);
                out.flush();
                out.close();
            } catch (Exception e) {
                resultMap.put("resultCode", 0);
                resultMap.put("msg", "存储异常");
            }
        }
        return file;
    }

    /**
     * 通过图片src下载图片
     * 并保存到本地路径
     *
     * @param urlString
     * @param filename
     * @throws Exception
     */
    public static void download(String urlString, String filename) throws Exception {
        // 构造URL
        URL url = new URL(urlString);
        // 打开连接
        URLConnection con = url.openConnection();
        //设置请求超时为5s
        con.setConnectTimeout(5 * 1000);
        // 输入流
        InputStream is = con.getInputStream();
        /*
        // 流转文件
        String nowDateStr = LocalDate.now().format(DateTimeFormatter.ofPattern("yyyy-MM-dd"));
        String imgFilePath = filePathRoot + "\\" + nowDateStr;
        File file1 = new File(imgFilePath);
        //判断文件路径下的文件夹是否存在,不存在则创建
        if (!file1.exists() && !file1.isDirectory()) {
            file1.mkdirs();
        }
        File file = new File(imgFilePath + "\\" + filename);
        inputStreamToFile(is, file);*/

        // base64转文件
        String base64FromInputStream = getBase64FromInputStream(is);
        // 获取图片的扩展名
        String extensionName = filename.substring(filename.lastIndexOf(".") + 1);
        getFileFromBase64(base64FromInputStream, extensionName);
    }

    public static void inputStreamToFile(InputStream ins, File file) {
        try {
            OutputStream os = new FileOutputStream(file);
            int bytesRead = 0;
            byte[] buffer = new byte[8192];
            while ((bytesRead = ins.read(buffer, 0, 8192)) != -1) {
                os.write(buffer, 0, bytesRead);
            }
            os.close();
            ins.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static void main(String[] args) throws Exception {
        String url = "https://www.baidu.com/img/PCtm_d9c8750bed0b3c7d089fa7d55720d6cf.png";
        String fileName = "sftp_test.png";
        // String savePath = filePathRoot + "\\testDownload";
        download(url, fileName);
        // 文件转Base64
        String filePath = filePathRoot + "\\testDownload\\af4616c312d.png";
        String dd = encryptToBase64(filePath);
        System.out.println(dd);
        System.out.println("---------------------------------------");
        // Base64转文件
        System.out.println("---------------------------------------" + filePath.substring(filePath.lastIndexOf(".") + 1));
        getFileFromBase64(dd, filePath.substring(filePath.lastIndexOf(".") + 1));
    }

}

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

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

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

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值