Java将byte[]转图⽚存储到本地的案例
将图⽚转成字节数组:
import sun.misc.BASE64Encoder;
import java.io.*;
// 传⼊图⽚路径,获取图⽚
FileInputStream fis = new FileInputStream("/Users/curry/error.png");
BufferedInputStream bis = new BufferedInputStream(fis);
ByteArrayOutputStream bos = new ByteArrayOutputStream();
byte[] buff = new byte[1024];
int len = 0;
while ((len = ad(buff)) != -1) {
bos.write(buff, 0, len);
}
// 得到图⽚的字节数组
byte[] result = ByteArray();
// 将数组转为字符串
BASE64Encoder encoder = new BASE64Encoder();
String str = de(result).trim();
将数组转为图⽚:
import sun.misc.BASE64Decoder;
import java.io.FileOutputStream;
import java.io.IOException;
import java.io.OutputStream;
BASE64Decoder decoder = new BASE64Decoder();
byte[] imgbyte = decoder.decodeBuffer("刚刚将字节数组转成的字符串");
OutputStream os = new FileOutputStream("/Users/curry/text.png");
os.write(imgbyte, 0, imgbyte.length);
os.flush();
os.close();
补充:java将图⽚转化为base64和base64转化为图⽚编码并保存在本地
public class Base64Convert {
/**
* @Description:图⽚转化成base64字符串
* @param: path
* @Return:
*/
public static String GetImageStr(String path)
{
//将图⽚⽂件转化为字节数组字符串,并对其进⾏Base64编码处理
//待处理的图⽚
String imgFile = path;
InputStream in = null;
byte[] data = null;
//读取图⽚字节数组
try
{
in = new FileInputStream(imgFile);
data = new byte[in.available()];
in.close();
}
catch (IOException e)
{
e.printStackTrace();
}
/
/对字节数组Base64编码
BASE64Encoder encoder = new BASE64Encoder();
//返回Base64编码过的字节数组字符串
de(data);
}
/**
* @Description: base64字符串转化成图⽚
* @param: imgStr
* @Return:
*/
public static boolean GenerateImage(String imgStr,String photoname)
{
//对字节数组字符串进⾏Base64解码并⽣成图⽚
//图像数据为空
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;
}
java数组字符串转数组}
//⽣成jpeg图⽚
String imagePath= UploadPhysicalPath();
//System.currentTimeMillis()
//新⽣成的图⽚
String imgFilePath = imagePath+photoname;
OutputStream out = new FileOutputStream(imgFilePath);
out.write(b);
out.flush();
out.close();
return true;
}
catch (Exception e)
{
return false;
}
}
}
Java中,将字节数组转成图⽚的有很多种⽅式,在这⾥记录其中⼀种
利⽤js改变img标签中的src
<!DOCTYPE html>
<html class=" ">
<head>
<meta charset="utf-8">
<title>图⽚</title>
</head>
<body class="">
<img id="pic" />
</body>
<script type="text/javascript">
var url = "data:image/png;base64,"; <!-- "data:image/png;charset=utf-8;base64," -->
var i = "iVBORw0KGgoAAAANSUhEUgAAABAAAAAQAQMAAAAlPW0iAAAAA3NCSVQICAjb4U/gAAAABlBMVEXMzMzTjRV2AAAACXBIWXMAAArrAAAK6wGCiw1aAAAAHHRFWHRTb2Z0d2FyZQBBZG9iZSBGaXJld29ya3MgQ1M26LyyjAAAABFJREFUCJlj+M/A
setInterval(showPicture,100) <!-- setInterval(函数,调⽤时间间隔) ⽅法可按照指定的周期(以毫秒计)来调⽤函数或计算表达式。 -->
function showPicture(){
}
</script>
</html>
利⽤ajax前后端交互,再加上定时器不停的刷新,前端界⾯即可实现动态刷新图⽚的效果
把图像⼆进制流⽂件的内容直接写在了HTML ⽂件中,这样做的好处是,节省了⼀个HTTP 请求。坏处就是浏览器不会缓存这种图像。⼤家可以根据实际情况进⾏⾃由取舍。
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论