真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)專注于合江企業(yè)網(wǎng)站建設(shè),自適應(yīng)網(wǎng)站建設(shè),購物商城網(wǎng)站建設(shè)。合江網(wǎng)站建設(shè)公司,為合江等地區(qū)提供建站服務(wù)。全流程按需網(wǎng)站制作,專業(yè)設(shè)計,全程項目跟蹤,成都創(chuàng)新互聯(lián)專業(yè)和態(tài)度為您提供的服務(wù)

Java的特點有哪些

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

/**
* 替換html中的base64圖片數(shù)據(jù)為實際圖片
* @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()){//文件根目錄不存在時創(chuàng)建
   new File(fileRoot).mkdirs();
  }
  String htmlContent = html;
  Pattern pattern = Pattern.compile("\\]*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;//待存儲的文件名
    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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!


網(wǎng)站題目:怎么在Java中將base64圖片編碼數(shù)據(jù)轉(zhuǎn)換為本地圖片
標(biāo)題網(wǎng)址:http://weahome.cn/article/ghdods.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部