溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Java中將base64圖片編碼數(shù)據(jù)轉(zhuǎn)換為本地圖片

發(fā)布時(shí)間:2021-02-22 15:50:28 來源:億速云 閱讀:624 作者:Leah 欄目:編程語(yǔ)言

怎么在Java中將base64圖片編碼數(shù)據(jù)轉(zhuǎn)換為本地圖片?相信很多沒有經(jīng)驗(yàn)的人對(duì)此束手無(wú)策,為此本文總結(jié)了問題出現(xiàn)的原因和解決方法,通過這篇文章希望你能解決這個(gè)問題。

Java的特點(diǎn)有哪些

Java的特點(diǎn)有哪些 1.Java語(yǔ)言作為靜態(tài)面向?qū)ο缶幊陶Z(yǔ)言的代表,實(shí)現(xiàn)了面向?qū)ο罄碚摚试S程序員以優(yōu)雅的思維方式進(jìn)行復(fù)雜的編程。 2.Java具有簡(jiǎn)單性、面向?qū)ο?、分布式、安全性、平臺(tái)獨(dú)立與可移植性、動(dòng)態(tài)性等特點(diǎn)。 3.使用Java可以編寫桌面應(yīng)用程序、Web應(yīng)用程序、分布式系統(tǒng)和嵌入式系統(tǒng)應(yīng)用程序等。

/**
* 替換html中的base64圖片數(shù)據(jù)為實(shí)際圖片
* @param html
* @param fileRoot 本地路徑
* @param serRoot 服務(wù)器路徑
* @return
*/
public static String replaceBase64Image(String html,String fileRoot,String serRoot){
  File file = new File(fileRoot);
  if(!file.exists()){//文件根目錄不存在時(shí)創(chuàng)建
   new File(fileRoot).mkdirs();
  }
  String htmlContent = html;
  Pattern pattern = Pattern.compile("\\<img[^>]*src=\"data:image/[^>]*>");
  Matcher matcher = pattern.matcher(html);
  GUIDUtils.init();
  while(matcher.find()){  //找出base64圖片元素
   String str = matcher.group();
   String src = ExStringUtils.substringBetween(str, "src=\"", "\"");//src="..."
   String ext = ExStringUtils.defaultIfEmpty(ExStringUtils.substringBetween(str, "data:image/", ";"), "jpg");//圖片后綴
   String base64ImgData = ExStringUtils.substringBetween(str, "base64,", "\"");//圖片數(shù)據(jù)
   if(ExStringUtils.isNotBlank(ext)&&ExStringUtils.isNotBlank(base64ImgData)){
    //data:image/gif;base64,base64編碼的gif圖片數(shù)據(jù)
    //data:image/png;base64,base64編碼的png圖片數(shù)據(jù)
    if("jpeg".equalsIgnoreCase(ext)){//data:image/jpeg;base64,base64編碼的jpeg圖片數(shù)據(jù)
     ext = "jpg";
    } else if("x-icon".equalsIgnoreCase(ext)){//data:image/x-icon;base64,base64編碼的icon圖片數(shù)據(jù)
     ext = "ico";
    }
    String fileName = GUIDUtils.buildMd5GUID(false)+"."+ext;//待存儲(chǔ)的文件名
    String filePath = fileRoot+File.separator+fileName;//圖片路徑
    try {
     convertBase64DataToImage(base64ImgData, filePath);//轉(zhuǎn)成文件
     String serPath = serRoot+fileName;//服務(wù)器地址
     htmlContent = htmlContent.replace(src, serPath);//替換src為服務(wù)器地址
    } catch (IOException e) {
     e.printStackTrace();
    }
   }
  }
  return htmlContent;
}
/**
* 把base64圖片數(shù)據(jù)轉(zhuǎn)為本地圖片
* @param base64ImgData
* @param filePath
* @throws IOException
*/
public static void convertBase64DataToImage(String base64ImgData,String filePath) throws IOException {
  BASE64Decoder d = new BASE64Decoder();
  byte[] bs = d.decodeBuffer(base64ImgData);
  FileOutputStream os = new FileOutputStream(filePath);
  os.write(bs);
  os.close();
}

看完上述內(nèi)容,你們掌握怎么在Java中將base64圖片編碼數(shù)據(jù)轉(zhuǎn)換為本地圖片的方法了嗎?如果還想學(xué)到更多技能或想了解更多相關(guān)內(nèi)容,歡迎關(guān)注億速云行業(yè)資訊頻道,感謝各位的閱讀!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI