1. 程式人生 > >Java將圖片轉Base64

Java將圖片轉Base64

      Base64是網路上最常見的用於傳輸8Bit位元組程式碼的編碼方式之一。Base64編碼可用於在HTTP環境下傳遞較長的標識資訊。例如,在Java Persistence系統Hibernate中,就採用了Base64來將一個較長的唯一識別符號(一般為128-bit的UUID)編碼為一個字串,用作HTTP表單和HTTP GET URL中的引數。在其他應用程式中,也常常需要把二進位制資料編碼為適合放在URL(包括隱藏表單域)中的形式。此時,採用Base64編碼具有不可讀性,即所編碼的資料不會被人用肉眼所直接看到。

/**
 * 影象轉64base
 */


import java.lang.*;
import
java.io.*; public class Base64 { public static String byteConverterBASE64(File file){ long size = file.length(); byte[] imageByte = new byte[(int)size]; FileInputStream fs = null; BufferedInputStream bis = null; try { fs = new FileInputStream(file); bis = new
BufferedInputStream(fs); bis.read(imageByte); } catch (FileNotFoundException e) { log.error("檔案"+file.getName()+"不能被找到:"+e.getMessage()); } catch (IOException e) { log.error("byte轉換BASE64出錯:"+e.getMessage()); } finally{ if(bis != null
){ try { bis.close(); } catch (IOException e) { log.error("關閉輸入流出錯:"+e.getMessage()); } } if(fs != null){ try { fs.close(); } catch (IOException e) { log.error("關閉輸入流出錯:"+e.getMessage()); } } } return (new sun.misc.BASE64Encoder()).encode(imageByte); } public static void main(String[] args) { File file=new File("C:\\test\\nice.jpg"); String str=Base64.byteConverterBASE64(file); System.out.println(str); System.out.println(str.length()); } }