java实现图片与base64字符串之间的转换(不适用SUN公司的sun.misc.BASE64Encoder)

package com.liu.ming.test;
import java.io.FileOutputStream;
import java.io.OutputStream;
import org.apache.commons.codec.DecoderException;
import org.apache.commons.codec.binary.Base64;

public class Base64Encoder {
	
	//base64字符串转化成图片    
    public static boolean GenerateImage(String imgStr)    
    {   //对字节数组字符串进行Base64解码并生成图片    
        if (imgStr == null) //图像数据为空    
            return false;    
		Base64 base64 = new Base64();
        try     
        {    
            //Base64解码    
        	byte[] b = base64.decode(imgStr.getBytes());
            for(int i=0;i

你可能感兴趣的:(struts2)