從Base64編碼轉換為圖片文件


package luckyclient.utils;

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 Base64Image {
public static void main(String[] args) {
// 測試從Base64編碼轉換為圖片文件
String strImg = "data:image/jpeg;base64,/9j/4AAQSkZJRgABAgAAAQABAAD/2..................P/9k=";
GenerateImage(strImg, "D:\\wangyc.jpg");

// // 測試從圖片文件轉換為Base64編碼
// System.out.println(GetImageStr("d:\\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;
}
}
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM