需求:首先获取一个base64格式的图片,然后保存在指定文件夹内,并且新建时间文件夹进行区分,如果时间文件夹存在就直接存储,时间文件夹不存在就新建文件夹。
/**
* 保存图片
*
* @param base64image 图片base64字符串
* @param name 图片保存之后的名称
* @return 文件名
*/
public static String saveBase64Image(String base64image,String name) {
Date date = new Date();
String dataForm = new SimpleDateFormat("yyyy-MM-dd").format(date);
String filePath = PropertiesTools.applicationProperty("app.image.path") + dataForm + '/';
File file = new File(filePath);
if (!file.exists()) {//如果文件夹不存在
file.mkdir();//创建文件夹
}
String fileType = FileTools.base64imageType(base64image);// "a.png";
String fileName = FileTools.randomFileName(null);
String fileContent = FileTools.base64imageContent(base64image);
String imageFullName = name + "." + fileType;
FileTools.saveBase64Images(fileContent, filePath + imageFullName);
return dataForm+'/'+imageFullName;
}
/**
* 保存图片
*
* @param base64str 图片base64字符串
* @param filePath 完整的文件路径(包含文件名)
* @return 文件地址
*/
public static String saveBase64Images(String base64str, String filePath) {
// 参数校验
if (base64str == null || filePath == null)
return null;
// 检查目录是否存在,同时生成目录
String fileDirectory = FileTools.directoryFromPath(filePath);
if (!FileTools.generateDirectory(fileDirectory)) {
return null;
}
// 存储文件
BASE64Decoder decoder = new BASE64Decoder();
try {
//Base64解码
byte[] b = decoder.decodeBuffer(base64str);
for (int i = 0; i < b.length; ++i) {
//调整异常数据
if (b[i] < 0) {
b[i] += 256;
}
}
//生成jpeg图片
OutputStream out = new FileOutputStream(filePath);
out.write(b);
out.flush();
out.close();
return filePath;
} catch (Exception e) {
e.printStackTrace();
return null;
}
}