我是靠谱客的博主 激昂小懒猪,最近开发中收集的这篇文章主要介绍ByteArrayOutputStream, ByteArrayInputStream的用法,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

ByteArrayOutputStream类是在创建它的实例时,程序内部创建一个byte型别数组的缓冲区,然后利用ByteArrayOutputStream和ByteArrayInputStream的实例向数组中写入或读出byte型数据。在网络传输中我们往往要传输很多变量,我们可以利用ByteArrayOutputStream把所有的变量收集到一起,然后一次性把数据发送出去。具体用法如下:

ByteArrayOutputStream: 可以捕获内存缓冲区的数据,转换成字节数组
ByteArrayInputStream: 可以将字节数组转化为输入流

public static void main(String[] args) {
int a = 0;
int b = 1;
//ByteArrayOutputStream把内存中的数据读到字节数组中 
ByteArrayOutputStream bout = new ByteArrayOutputStream();
bout.write(a);
bout.write(b);
bout.write(c);
byte[] buff = bout.toByteArray();
for (int i = 0; i < buff.length; i++)
System.out.println(buff[i]);
System.out.println("***********************");
//ByteArrayInputStream又把字节数组中的字节以流的形式读出,实现了对同一个字节数组的操作. 
ByteArrayInputStream bin = new ByteArrayInputStream(buff);
while ((b = bin.read()) != -1) {
System.out.println(b);
}
}

或者简单Demo


public static void main(String[] args) throws Exception {
String filePath= "http://xxxxx.jpg";
HttpURLConnection downloadCon = null;
InputStream imgInputStream = null;
BufferedReader reader = null;
URL urlFile = new URL(filePath);
downloadCon = (HttpURLConnection) urlFile.openConnection();
//获取网络图片
imgInputStream = downloadCon.getInputStream();
////将图片加载为内存byte数组
int buffSize = Math.max(imgInputStream.available(), 1024 * 8);
byte[] temp = new byte[buffSize];
ByteArrayOutputStream out = new ByteArrayOutputStream(buffSize);
int size = 0;
while ((size = imgInputStream.read(temp)) != -1) {
out.write(temp, 0, size);
}
byte[] imageData= out.toByteArray();
/////编辑该图片
////*****************************
////*****************************
/////编辑该图片
//输出图片
FileOutputStream fout = new FileOutputStream("d:\"+Math.random()+".jpg");
int bytes = 0;
byte[] bufferOut = new byte[1024];
ByteArrayInputStream bis = new ByteArrayInputStream(imageData);
while ((bytes = bis.read(bufferOut)) != -1) {
fout.write(bufferOut, 0, bytes);
}
bis.close();
fout.flush();
fout.close();
}

最后

以上就是激昂小懒猪为你收集整理的ByteArrayOutputStream, ByteArrayInputStream的用法的全部内容,希望文章能够帮你解决ByteArrayOutputStream, ByteArrayInputStream的用法所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(52)

评论列表共有 0 条评论

立即
投稿
返回
顶部