Base64Image工具类

1、对字节数组字符串进行Base64解码并生成图片

public static boolean GenerateImage(String imgStr, String imgFilePath) {
// 图像数据为空
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;
}
}

2、将图片文件转化为字节数组字符串,并对其进行Base64编码处理

  public static String GetImageStr( InputStream in) {
    byte[] data = null;

    // 读取图片字节数组
    try {
        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编码过的字节数组字符串
}

3、将图片文件转化为字节数组字符串,并对其进行Base64编码处理

  public static String GetImageStr(String imgFilePath) {

    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编码过的字节数组字符串
}

4、main方法测试

   public static void main(String[] args) {
   //Base64编码
   String strImg="";
   //从Base64编码转换为文件存储路径
   GenerateImage(strImg, "D:\\wangyc.jpg");
// 测试从图片文件转换为Base64编码
     System.out.println(GetImageStr("C:\\Users\\issuser\\Pictures\\response.jpg"));      

}

猜你喜欢

转载自blog.51cto.com/7218743/2550267