import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;java
import sun.misc.BASE64Decoder;
import sun.misc.BASE64Encoder;數組
public class Test64Bit {
public static void main(String[] args) {
// 測試從Base64編碼轉換爲圖片文件網絡
String strImg = "這裏放64位編碼";
GenerateImage(strImg, "D:\wangyc.jpg");測試
// 測試從圖片文件轉換爲Base64編碼
System.out.println(GetImageStr("d:\wangyc.jpg"));編碼
}url
public static String GetImageStr(String imgFilePath) {// 將圖片文件轉化爲字節數組字符串,並對其進行Base64編碼處理
byte[] data = null;code
// 讀取圖片字節數組
try {
InputStream in = new FileInputStream(imgFilePath);
data = new byte[in.available()];
in.read(data);
in.close();
} catch (IOException e) {
e.printStackTrace();
}orm
// 對字節數組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;
}
}
}字符串
/** * 將網絡圖片進行Base64位編碼 * * @param imgUrl 圖片的url路徑,如http://.....xx.jpg * @return */ public static String encodeImgageToBase64(URL imageUrl) {// 將圖片文件轉化爲字節數組字符串,並對其進行Base64編碼處理 ByteArrayOutputStream outputStream = null; try { BufferedImage bufferedImage = ImageIO.read(imageUrl); outputStream = new ByteArrayOutputStream(); ImageIO.write(bufferedImage, "jpg", outputStream); } catch (MalformedURLException e1) { e1.printStackTrace(); } catch (IOException e) { e.printStackTrace(); } // 對字節數組Base64編碼 BASE64Encoder encoder = new BASE64Encoder(); return encoder.encode(outputStream.toByteArray());// 返回Base64編碼過的字節數組字符串 } 調用: String imgUrlPath ="http://101.1.1.2/19212.jpg"; URL url = new URL(imgUrlPath); encodeImgageToBase64(url);