String filePath = COMMON_PATH + File.separator + group; businessLicenseName = businessLicenseName + ".jpg"; new File(filePath).mkdirs(); filePath = filePath + businessLicenseName; byte[] fileData = Base64.createBase64().decode(businessLicense); log.info("生成的fileData的字节流是:"+fileData); log.info("生成的filePath是:"+filePath); FileUtils.write(fileData,filePath);
package cn.com.taiji.lawenforcement.common.utils; import lombok.extern.slf4j.Slf4j; import org.apache.commons.io.IOUtils; import java.io.*; @Slf4j public class FileUtils { /** * 将文件内容读取成二进制 * @author liandi * @since esign, 2018年1月9日 * @param filePath 文件的绝对路径 * @return */ public static byte[] readFileTobytes(String filePath) { InputStream in = null; try { in = new FileInputStream(filePath); return IOUtils.toByteArray(in); } catch (Throwable e) { e.printStackTrace(); log.error("保存失败",e); } finally { try { if (null != in) { in.close(); } } catch (IOException e) { e.printStackTrace(); log.error("保存失败",e); } } return null; } /** * 将二进制数据写入一个文件 * @author liandi * @since esign, 2018年1月9日 * @param data * @param filePath */ public static void write(byte[] data, String filePath) { OutputStream out = null; try { out = new FileOutputStream(filePath); IOUtils.write(data, out); } catch (Throwable e) { e.printStackTrace(); log.error("保存失败",e); } finally { try { if (null != out) { out.close(); } } catch (IOException e) { e.printStackTrace(); log.error("保存失败",e); } } } }
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 举报,一经查实,本站将立刻删除。
文章由极客之音整理,本文链接:https://www.bmabk.com/index.php/post/124767.html