Java实现图片转base64字符串和图片互相转换(适用于本地图片)

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

import java.io.*;

/**
 * @Description:
 * @Author: Han
 * @CreateDate: 2022/9/7 
 **/
public class Test010 {

    public static void main(String[] args) {
        String base64Str = imageToBase64Str("D:\\SoftWare\\图片素材\\头像\\432.jpeg");
        System.out.println(base64Str);

        boolean b = base64StrToImage(base64Str, "D:\\002.jpg");
        System.out.println(b);
    }

    /**
     * 图片转base64字符串
     *
     * @param imgFile 图片路径
     * @return
     */
    public static String imageToBase64Str(String imgFile) {
        InputStream inputStream = null;
        byte[] data = null;
        try {
            inputStream = new FileInputStream(imgFile);
            data = new byte[inputStream.available()];
            inputStream.read(data);
            inputStream.close();
        } catch (IOException e) {
            e.printStackTrace();
        }
        // 加密
        BASE64Encoder encoder = new BASE64Encoder();
        return encoder.encode(data);
    }

    /**
     * base64编码字符串转换为图片,并写入文件
     *
     * @param imgStr base64编码字符串
     * @param path   图片路径
     * @return
     */
    public static boolean base64StrToImage(String imgStr, String path) {
        if (imgStr == null)
            return false;
        BASE64Decoder decoder = new BASE64Decoder();
        try {
            // 解密
            byte[] b = decoder.decodeBuffer(imgStr);
            // 处理数据
            for (int i = 0; i < b.length; ++i) {
                if (b[i] < 0) {
                    b[i] += 256;
                }
            }
            //文件夹不存在则自动创建
            File tempFile = new File(path);
            if (!tempFile.getParentFile().exists()) {
                tempFile.getParentFile().mkdirs();
            }
            OutputStream out = new FileOutputStream(tempFile);
            out.write(b);
            out.flush();
            out.close();
            return true;
        } catch (Exception e) {
            return false;
        }
    }

}

 参考文章:Java实现图片转base64字符串和图片互相转换 - 紫月java - 博客园 (cnblogs.com)

 在线图片转Base64 图片转 BASE64 编码 | 菜鸟工具 (runoob.com)

posted @ 2022-09-07 14:36  云村的王子  阅读(4674)  评论(0编辑  收藏  举报