随笔分类 - io
摘要:业务需求: 有时候我们在上传图片到指定目录后,长时间会造成有些图片已经没有任何作用了,我们就可以做一个定时删除指定目录下的文件,去删除那些文件 package com.test.demo; import lombok.extern.slf4j.Slf4j; import java.io.File;
阅读全文
摘要:文件流转换成Base64 /** * 文件流转换成Base4 */ public String fileToBase64(String path){ String base64 = null; InputStream in = null; try { File file = new File(pat
阅读全文