主要通过对base64的处理以及 UUID的唯一主键对图片文件进行保存以及处理
package baseoflearn.learn;
import java.io.*;
import java.util.Base64;
/**
* @author :zhaofuh
* @date :Created in 2020/10/26 16:22
* @description:对于图片的常用传输格式base64进行编码和解码的处理主要是解码过程中头部 的操作以及存储
* @modified By:
* @version: 0.1$
*/
public class Base64CodingAndDecoding {
public static String loadAsBase64(String imgFile)
{//将图片文件转化为字节数组字符串,并对其进行Base64编码处理
File file = new File(imgFile);
if(!file.exists()){
System.err.println("文件不存在");
return null;
}
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();
}
//对字节数组Base64编码
return Base64.getEncoder().encodeToStrin