您好,登錄后才能下訂單哦!
這篇文章主要介紹“怎么將InputStream轉(zhuǎn)化為base64”,在日常操作中,相信很多人在怎么將InputStream轉(zhuǎn)化為base64問(wèn)題上存在疑惑,小編查閱了各式資料,整理出簡(jiǎn)單好用的操作方法,希望對(duì)大家解答”怎么將InputStream轉(zhuǎn)化為base64”的疑惑有所幫助!接下來(lái),請(qǐng)跟著小編一起來(lái)學(xué)習(xí)吧!
怎么才能將文件流轉(zhuǎn)化為base64呢,代碼如下
/** * @author 李光光(編碼小王子) * @date 2018年6月28日 下午2:09:26 * @version 1.0 */ public class FileToBase64 { public static String getBase64FromInputStream(InputStream in) { // 將圖片文件轉(zhuǎn)化為字節(jié)數(shù)組字符串,并對(duì)其進(jìn)行Base64編碼處理 byte[] data = null; // 讀取圖片字節(jié)數(shù)組 try { ByteArrayOutputStream swapStream = new ByteArrayOutputStream(); byte[] buff = new byte[100]; int rc = 0; while ((rc = in.read(buff, 0, 100)) > 0) { swapStream.write(buff, 0, rc); } data = swapStream.toByteArray(); } catch (IOException e) { e.printStackTrace(); } finally { if (in != null) { try { in.close(); } catch (IOException e) { e.printStackTrace(); } } } return new String(Base64.encodeBase64(data)); } }
項(xiàng)目是基于springboot的。讀取本地圖片,轉(zhuǎn)成base64編碼字節(jié)數(shù)組字符串,傳到前端。
這種傳輸圖片的方式可以用于Java后臺(tái)代碼生成條形碼二維碼,直接轉(zhuǎn)成base64傳給前臺(tái)展示。ps:(在傳給前臺(tái)的字符串前要加上data:image/png;base64,,這樣html的img標(biāo)簽的src才能以圖片的格式去解析字符串)
@RequestMapping("/login") public String login(Map<String ,Object> map){ byte[] data = null; // 讀取圖片字節(jié)數(shù)組 try { InputStream in = new FileInputStream("E://aa.jpg"); data = new byte[in.available()]; in.read(data); in.close(); } catch (IOException e) { e.printStackTrace(); } // 對(duì)字節(jié)數(shù)組Base64編碼 BASE64Encoder encoder = new BASE64Encoder(); // 返回Base64編碼過(guò)的字節(jié)數(shù)組字符串 map.put("image","data:image/png;base64,"+ encoder.encode(Objects.requireNonNull(data))); return "login"; }
用的是thymeleaf模板引擎,只是單純地展示base64編碼的圖片。
<!DOCTYPE html> <html lang="en" xmlns:th="http://www.thymeleaf.org"> <head> <meta charset="UTF-8"> <title>登錄</title> </head> <body> <img th:src="${image}"> </body> </html>
到此,關(guān)于“怎么將InputStream轉(zhuǎn)化為base64”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識(shí),請(qǐng)繼續(xù)關(guān)注億速云網(wǎng)站,小編會(huì)繼續(xù)努力為大家?guī)?lái)更多實(shí)用的文章!
免責(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)容。