package com.cmos.cwpcore.util;

import java.io.FileInputStream;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;

import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

import sun.misc. 64Decoder;
import sun.misc. 64Encoder;

/**
 *  64转换工具类
 * @author yiyu
 *
 */
public class  64Util {
	private  64Util(){}
    /**
     * 图片转化成 64字符串  
     * @param imgFile 要处理的图片路径
     * @return
     */
	private static Logger logger = LoggerFactory.getLogger( 64Util.class);
    public static String GetImageStr(String imgFile){//将图片文件转化为字节数组字符串,并对其进行 64编码处理  
        InputStream in = null;  
        byte[] data = null;  
        //读取图片字节数组  
        try{  
            in = new FileInputStream(imgFile);          
            data = new byte[in.available()]; 
            in.read(data);    
            in.close();  
        }catch (IOException e){  
        	logger.info(e.getMessage(),e);
        }  
        //对字节数组 64编码  
         64Encoder encoder = new  64Encoder();  
        return encoder.encode(data);//返回 64编码过的字节数组字符串  
    }  
      
    /**
     *  64字符串转化成图片  
     * @param imgStr  64字符串
     * @param imgFilePath 存储图片路径
     * @return boolean 
     */
    public static boolean GenerateImage(String imgStr , String imgFilePath){   //对字节数组字符串进行 64解码并生成图片  
        if (imgStr == null){ //图像数据为空  
            return false;  
        }
         64Decoder decoder = new  64Decoder();
        OutputStream out=null;
        try{  
            // 64解码  
            byte[] b = decoder.decodeBuffer(imgStr);  
            for(int i=0; i<b.length; ++i){  
                if(b[i]<0){//调整异常数据  
                    b[i]+=256;  
                }  
            }  
            //生成jpeg图片  
            out = new FileOutputStream(imgFilePath);      
            out.write(b);  
            out.flush();  
            out.close();  
            return true;  
        }catch (Exception e){ 
        	logger.info(e.getMessage(),e);
            return false;  
        }/*finally {
			if(out!=null){
				try {
					out.close();
				} catch (IOException e) {
					logger.info(e.getMessage(),e);
				}
			}
		}  */
    }  
}

文件图片压缩

 

收藏 打印