Blame view

src/com/fh/util/ImageAnd64Binary.java 2.14 KB
ad5081d3   孙向锦   初始化项目
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
  package com.fh.util;
  
  import java.io.FileInputStream;
  import java.io.FileOutputStream;
  import java.io.IOException;
  import java.io.InputStream;
  import java.io.OutputStream;
  
  import Decoder.BASE64Decoder;
  import Decoder.BASE64Encoder;
  
  /**
   * 说明:BASE64处理 创建人:FH Q313596790 修改时间:20151124
   * 
   * @version
   */
  public class ImageAnd64Binary {
  	
  	public static void main(String[] args) {
  		String imgSrcPath = "H:/1.png"; // 生成64编码的图片的路径
  		String imgCreatePath = "H:/123.png"; // 将64编码生成图片的路径
  		imgCreatePath = imgCreatePath.replaceAll("\\\\", "/");
  		System.out.println(imgCreatePath);
  		String strImg = getImageStr(imgSrcPath);
  		System.out.println(strImg);
  		generateImage(strImg, imgCreatePath);
  	}
  
  	/**
  	 * 将图片文件转化为字节数组字符串,并对其进行Base64编码处理
  	 * 
  	 * @param imgSrcPath
  	 *            生成64编码的图片的路径
  	 * @return
  	 */
  	public static String getImageStr(String imgSrcPath) {
  		InputStream in = null;
  		byte[] data = null;
  		// 读取图片字节数组
  		try {
  			in = new FileInputStream(imgSrcPath);
  			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编码过的字节数组字符串
  	}
  
  	/**
  	 * 对字节数组字符串进行Base64解码并生成图片
  	 * 
  	 * @param imgStr
  	 *            转换为图片的字符串
  	 * @param imgCreatePath
  	 *            64编码生成图片的路径
  	 * @return
  	 */
  	public static boolean generateImage(String imgStr, String imgCreatePath) {
  		if (imgStr == null) // 图像数据为空
  			return false;
  		BASE64Decoder decoder = new BASE64Decoder();
  		try {
  			// Base64解码
  			byte[] b = decoder.decodeBuffer(imgStr);
  			for (int i = 0; i < b.length; ++i) {
  				if (b[i] < 0) {// 调整异常数据
  					b[i] += 256;
  				}
  			}
  			OutputStream out = new FileOutputStream(imgCreatePath);
  			out.write(b);
  			out.flush();
  			out.close();
  			return true;
  		} catch (Exception e) {
  			return false;
  		}
  	}
  
  }