您好,登錄后才能下訂單哦!
這篇文章主要介紹了如何在java中將圖片轉化為二進制字符串,此處給大家介紹的非常詳細,對大家的學習或工作具有一定的參考價值,需要的朋友可以參考下:
public static String getImgStr(String imgFile){ //將圖片文件轉化為字節數組字符串,并對其進行Base64編碼處理 InputStream in = null; byte[] data = null; //讀取圖片字節數組 try { in = new FileInputStream(imgFile); data = new byte[in.available()]; in.read(data); in.close(); } catch (IOException e) { e.printStackTrace(); } return new String(Base64.encodeBase64(data)); }
--
利用以上的思路寫的一個測試
public class ReadImageTest { public static void main(String[] args) throws IOException { FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png")); String picStr=""; byte[] read = null; int len = 0; read= new byte[fis.available()]; fis.read(read); String baseStr= Base64.getEncoder().encodeToString(read); //System.out.println( baseStr); byte[] op= Base64.getDecoder().decode(baseStr); // System.out.println(new String(op)); FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\1.jpg")); fos.write(op,0,op.length ); fos.flush(); fos.close(); } }
但是available()有一定的限制。
為了穩妥,嚴重建議采取以下方式:
public static void imageToBase64Str() throws IOException{ FileInputStream fis = new FileInputStream(new File("C:\\Users\\luzhifei\\Pictures\\hc_logo.png")); byte[] read = new byte[1024]; int len = 0; List<byte[]> blist=new ArrayList<byte[]>(); int ttllen=0; while((len = fis.read(read))!= -1){ byte[] dst=new byte[len]; System.arraycopy(read, 0, dst, 0, len); ttllen+=len; blist.add(dst); } fis.close(); byte[] dstByte=new byte[ttllen]; int pos=0; for (int i=0;i<blist.size();i++){ if (i==0){ pos=0; } else{ pos+=blist.get(i-1).length; } System.arraycopy(blist.get(i), 0, dstByte, pos, blist.get(i).length); } String baseStr= Base64.getEncoder().encodeToString(dstByte); byte[] op= Base64.getDecoder().decode(baseStr); FileOutputStream fos = new FileOutputStream(new File("d:\\temp\\2.jpg")); fos.write(op,0,op.length ); fos.flush(); fos.close(); }
到此這篇關于如何在java中將圖片轉化為二進制字符串的文章就介紹到這了,更多相關的內容請搜索億速云以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持億速云!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。