檔案與base64如何互轉?
阿新 • • 發佈:2021-12-17
很多情況下,需要把檔案轉成base64字串進行傳輸,原因就是直接使用流傳輸可能會導致流接收不完整。使用base64字串接收然後再轉碼儲存檔案可避免這種問題。下面的方法僅供參考:
1.base64轉檔案
/** * base64轉檔案儲存 * * @param base64 base64字串 * @param basePath 檔案儲存的根路徑 * @param suffix 檔案字尾 * @param fileName 檔名 * @return */ public static String[] base64ToFile(String base64, String basePath, String suffix, String fileName) { SimpleDateFormat sdf= new SimpleDateFormat("yyyyMMdd"); String dateStr = sdf.format(new Date()); if (basePath.contains("\\")) { basePath = basePath.replace("\\", File.separator); } File f = createDir(basePath + File.separator + dateStr); if (null == fileName) {//補齊字尾 suffix = suffix.trim(); if (!suffix.startsWith(".") && suffix.indexOf(".") == -1) { suffix = "." + suffix; } fileName = UUID.randomUUID() + suffix; } try { byte[] buffer = new BASE64Decoder().decodeBuffer(base64); File file= new File(f, fileName); FileOutputStream out = new FileOutputStream(file); out.write(buffer); out.close(); String[] path = {dateStr, fileName}; return path; } catch (Exception e) { e.printStackTrace(); } return null; }
根據傳入的base64字串,可根據傳入的檔案字尾和UUID作為檔名把檔案儲存到指定位置,也可以直接傳入檔名進行儲存;最終都返回檔案的路徑和檔名。
2.檔案轉base64
/** * 檔案轉base64 * * @param filePath * @return */ public static String fileToBase64(String filePath) { if (filePath == null) { return null; } try { byte[] b = Files.readAllBytes(Paths.get(filePath)); return Base64.getEncoder().encodeToString(b); } catch (IOException e) { e.printStackTrace(); } return null; }
通過傳入檔案的路徑對檔案進行轉換。
就是這麼簡單,你學廢了嗎?感覺有用的話,給筆者點個贊吧 !