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);
}
}
} */
}
}
文件图片压缩
继续阅读与本文标签相同的文章
-
家电运输物流管理信息软件
2026-05-18栏目: 教程
-
Windows 10累积更新导致经典版Edge无法打开 微软承诺月底前修复
2026-05-18栏目: 教程
-
云南移动与昆船集团5G项目又有新进展,亮相瑞士第十届全球移动宽带论坛
2026-05-18栏目: 教程
-
功能强大且实用的6个在线网站,好东西,值得分享给大家!
2026-05-18栏目: 教程
-
微软谷歌增强合作 共同推进Chromium的现代化表单控件
2026-05-18栏目: 教程
