java实现图片文件转Base64编码加密解密

时间:2024-04-14 07:58:01

代码如下,有基本注释,直接复制过去,可能需要导包

import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;


    //图片文件转Base64编码

public class FileCode {
    /**
     * <p>将文件转成base64 字符串</p>
     * @param path 文件路径
     */
    public static String encodeBase64File(String path) throws Exception {
        File  file = new File(path);
        FileInputStream inputFile = new FileInputStream(file);
        byte[] buffer = new byte[(int)file.length()];
        inputFile.read(buffer);
        inputFile.close();
        return new BASE64Encoder().encode(buffer);
    }
    /**
     * <p>将base64字符解码保存文件</p>
     */ 
    public static void decoderBase64File(String base64Code,String targetPath) throws Exception {
        byte[] buffer = new BASE64Decoder().decodeBuffer(base64Code);
        FileOutputStream out = new FileOutputStream(targetPath);
        out.write(buffer);
        out.close();
    }
    /**
     * <p>将base64字符保存文本文件</p>
     */
    public static void toFile(String base64Code,String targetPath) throws Exception {
        byte[] buffer = base64Code.getBytes();
        FileOutputStream out = new FileOutputStream(targetPath);
        out.write(buffer);
        out.close();
    }
    public static void main(String[] args) {
        try {
            String base64Code =encodeBase64File("G:\\1.jpg");
            System.out.println(base64Code);
            decoderBase64File(base64Code, "F:\\解密.jpg");
            toFile(base64Code, "G:\\three.txt");           
        } catch (Exception e) {
            e.printStackTrace();
        }
    }
}

此处我们将需要加密的图片文件放到G盘根目录下,解密出来的图片文件和.txtBase64编码文件可以给一个路径,会自动生成。

java实现图片文件转Base64编码加密解密

生成的两个文件可以在之前设置的路径目录下找到,解密出来图片文件

java实现图片文件转Base64编码加密解密

Base64编码的txt文档

 

java实现图片文件转Base64编码加密解密