1. 程式人生 > >Base64編碼轉換二進位制圖片

Base64編碼轉換二進位制圖片

最近在做這方面的事情,所以有關的程式碼會較多一點

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;

public class Test64Bit {
public static void main(String[] args) {
// 測試從Base64編碼轉換為圖片檔案

  String strImg = "Base64編碼";
GenerateImage(strImg, "C:\\測試.jpg");

// 測試從圖片檔案轉換為Base64編碼
System.out.println(GetImageStr("C:\\wangyc.jpg"));


}

public static String GetImageStr(String imgFilePath) {// 將圖片檔案轉化為位元組陣列字串,並對其進行Base64編碼處理
byte[] data = null;

// 讀取圖片位元組陣列
try {
InputStream in = new FileInputStream(imgFilePath);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
e.printStackTrace();
}

// 對位元組陣列Base64編碼
BASE64Encoder encoder = new BASE64Encoder();
return encoder.encode(data);// 返回Base64編碼過的位元組陣列字串
}

public static boolean GenerateImage(String imgStr, String imgFilePath) {// 對位元組陣列字串進行Base64解碼並生成圖片
if (imgStr == null) // 影象資料為空
return false;
BASE64Decoder decoder = new BASE64Decoder();
try {
// Base64解碼
byte[] bytes = decoder.decodeBuffer(imgStr);
for (int i = 0; i < bytes.length; ++i) {
if (bytes[i] < 0) {// 調整異常資料
bytes[i] += 256;
}
}
// 生成jpeg圖片
OutputStream out = new FileOutputStream(imgFilePath);
out.write(bytes);
out.flush();
out.close();
return true;
} catch (Exception e) {
return false;
}
}
}
轉自blog.sina.com.cn/s/blog_81a2e91401010214.html

20140513