Java IO:ByteArrayOutputStream使用详解及源码分析

2024-01-05 06:58

本文主要是介绍Java IO:ByteArrayOutputStream使用详解及源码分析,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1 使用方法

  ByteArrayInputStream 包含一个内部缓冲区,该缓冲区包含从流中读取的字节。内部计数器跟踪 read 方法要提供的下一个字节。ByteArrayOutputStream实现了一个输出流,其中的数据被写入一个 byte 数组。缓冲区会随着数据的不断写入而自动增长。可使用 toByteArray()和 toString()获取数据。

1.1 方法介绍

  ByteArrayOutputStream提供的API如下:

// 构造函数ByteArrayOutputStream()ByteArrayOutputStream(int size)void    close() //关闭字节流synchronized void    reset() //重置计数器int     size() //获取当前计数synchronized byte[]  toByteArray() //将字节流转换为字节数组String  toString(int hibyte) //将字节流转换为StringString  toString(String charsetName)String  toString()synchronized void    write(byte[] buffer, int offset, int len) //写入字节数组buffer到字节流, offset是buffer的起始位置synchronized void    write(int oneByte) //写入一个字节到字节流synchronized void    writeTo(OutputStream out) //写输出流到其他输出流out
}

1.2 使用示例

public void testByteArrayOutputStream() {byte [] letter = {'h', 'i', 'j', 'k'};//新建字节流ByteArrayOutputStream outputStream = new ByteArrayOutputStream();//写入abcdefgint i = 'a'; //awhile (i < 'h') {outputStream.write(i);i++;}System.out.println("当前字节流中的内容有: " + outputStream.toString());//写入多个outputStream.write(letter, 1, 3);System.out.println("写入letter数组中的第2,3,4个字母字节流中的内容有: " + outputStream.toString());System.out.println("当前output字节流中的字节数为: " + outputStream.size());byte [] byteArr = outputStream.toByteArray();i = 0;System.out.print("byte数组内容为: ");while (i < byteArr.length) {System.out.print(byteArr[i++] + " ");}System.out.println();OutputStream cloneOut = new ByteArrayOutputStream();try {outputStream.writeTo(cloneOut);System.out.println("cloneOut的内容为: " + cloneOut.toString());} catch (IOException e) {e.printStackTrace();}}

  运行结果如下:

当前字节流中的内容有: abcdefg
写入letter数组中的第2,3,4个字母字节流中的内容有: abcdefgijk
当前output字节流中的字节数为: 10
byte数组内容为: 97 98 99 100 101 102 103 105 106 107
cloneOut的内容为: abcdefgijk

2 源码分析

2.1构造函数

  ByteArrayOutputStream有两个构造函数,区别是初始大小不同。

/*** Creates a new byte array output stream. The buffer capacity is* initially 32 bytes, though its size increases if necessary.*/
public ByteArrayOutputStream() {this(32);
}/*** Creates a new byte array output stream, with a buffer capacity of* the specified size, in bytes.** @param   size   the initial size.* @exception  IllegalArgumentException if size is negative.*/
public ByteArrayOutputStream(int size) {if (size < 0) {throw new IllegalArgumentException("Negative initial size: "+ size);}buf = new byte[size];
}

2.2 write方法

/*** Writes the specified byte to this byte array output stream.** @param   b   the byte to be written.*/
public synchronized void write(int b) {ensureCapacity(count + 1); //增加容量, 容量不够则加倍buf[count] = (byte) b; //写入字节count += 1;
}/*** Writes <code>len</code> bytes from the specified byte array* starting at offset <code>off</code> to this byte array output stream.** @param   b     the data.* @param   off   the start offset in the data.* @param   len   the number of bytes to write.*/
public synchronized void write(byte b[], int off, int len) {if ((off < 0) || (off > b.length) || (len < 0) ||((off + len) - b.length > 0)) {throw new IndexOutOfBoundsException();}ensureCapacity(count + len); //增加容量,容量不够则加倍System.arraycopy(b, off, buf, count, len); //写入字节数组count += len;
}

2.3 writeTo方法

/*** Writes the complete contents of this byte array output stream to* the specified output stream argument, as if by calling the output* stream's write method using <code>out.write(buf, 0, count)</code>.** @param      out   the output stream to which to write the data.* @exception  IOException  if an I/O error occurs.*/
public synchronized void writeTo(OutputStream out) throws IOException {out.write(buf, 0, count); //将 当前OutputStream的buf中内容写到out中
}

2.4 toString , toByteArray方法


/*** Creates a newly allocated byte array. Its size is the current* size of this output stream and the valid contents of the buffer* have been copied into it.** @return  the current contents of this output stream, as a byte array.* @see     java.io.ByteArrayOutputStream#size()*/
public synchronized byte toByteArray()[] {return Arrays.copyOf(buf, count); //返回信得数组
}/*** Converts the buffer's contents into a string decoding bytes using the* platform's default character set. The length of the new <tt>String</tt>* is a function of the character set, and hence may not be equal to the* size of the buffer.** <p> This method always replaces malformed-input and unmappable-character* sequences with the default replacement string for the platform's* default character set. The {@linkplain java.nio.charset.CharsetDecoder}* class should be used when more control over the decoding process is* required.** @return String decoded from the buffer's contents.* @since  JDK1.1*/
public synchronized String toString() {return new String(buf, 0, count); //返回String对象
}

参考:

[1] http://www.cnblogs.com/skywang12345/p/io_02.html
[2] http://www.cnblogs.com/skywang12345/p/io_03.html
[3] http://blog.csdn.net/rcoder/article/details/6118313

这篇关于Java IO:ByteArrayOutputStream使用详解及源码分析的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/572030

相关文章

JSON字符串转成java的Map对象详细步骤

《JSON字符串转成java的Map对象详细步骤》:本文主要介绍如何将JSON字符串转换为Java对象的步骤,包括定义Element类、使用Jackson库解析JSON和添加依赖,文中通过代码介绍... 目录步骤 1: 定义 Element 类步骤 2: 使用 Jackson 库解析 jsON步骤 3: 添

Java中注解与元数据示例详解

《Java中注解与元数据示例详解》Java注解和元数据是编程中重要的概念,用于描述程序元素的属性和用途,:本文主要介绍Java中注解与元数据的相关资料,文中通过代码介绍的非常详细,需要的朋友可以参... 目录一、引言二、元数据的概念2.1 定义2.2 作用三、Java 注解的基础3.1 注解的定义3.2 内

Java中使用Java Mail实现邮件服务功能示例

《Java中使用JavaMail实现邮件服务功能示例》:本文主要介绍Java中使用JavaMail实现邮件服务功能的相关资料,文章还提供了一个发送邮件的示例代码,包括创建参数类、邮件类和执行结... 目录前言一、历史背景二编程、pom依赖三、API说明(一)Session (会话)(二)Message编程客

Java中List转Map的几种具体实现方式和特点

《Java中List转Map的几种具体实现方式和特点》:本文主要介绍几种常用的List转Map的方式,包括使用for循环遍历、Java8StreamAPI、ApacheCommonsCollect... 目录前言1、使用for循环遍历:2、Java8 Stream API:3、Apache Commons

C++中使用vector存储并遍历数据的基本步骤

《C++中使用vector存储并遍历数据的基本步骤》C++标准模板库(STL)提供了多种容器类型,包括顺序容器、关联容器、无序关联容器和容器适配器,每种容器都有其特定的用途和特性,:本文主要介绍C... 目录(1)容器及简要描述‌php顺序容器‌‌关联容器‌‌无序关联容器‌(基于哈希表):‌容器适配器‌:(

JavaScript中的isTrusted属性及其应用场景详解

《JavaScript中的isTrusted属性及其应用场景详解》在现代Web开发中,JavaScript是构建交互式应用的核心语言,随着前端技术的不断发展,开发者需要处理越来越多的复杂场景,例如事件... 目录引言一、问题背景二、isTrusted 属性的来源与作用1. isTrusted 的定义2. 为

使用Python实现高效的端口扫描器

《使用Python实现高效的端口扫描器》在网络安全领域,端口扫描是一项基本而重要的技能,通过端口扫描,可以发现目标主机上开放的服务和端口,这对于安全评估、渗透测试等有着不可忽视的作用,本文将介绍如何使... 目录1. 端口扫描的基本原理2. 使用python实现端口扫描2.1 安装必要的库2.2 编写端口扫

Java循环创建对象内存溢出的解决方法

《Java循环创建对象内存溢出的解决方法》在Java中,如果在循环中不当地创建大量对象而不及时释放内存,很容易导致内存溢出(OutOfMemoryError),所以本文给大家介绍了Java循环创建对象... 目录问题1. 解决方案2. 示例代码2.1 原始版本(可能导致内存溢出)2.2 修改后的版本问题在

使用Python实现操作mongodb详解

《使用Python实现操作mongodb详解》这篇文章主要为大家详细介绍了使用Python实现操作mongodb的相关知识,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、示例二、常用指令三、遇到的问题一、示例from pymongo import MongoClientf

SQL Server使用SELECT INTO实现表备份的代码示例

《SQLServer使用SELECTINTO实现表备份的代码示例》在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误,在SQLServer中,可以使用SELECTINT... 在数据库管理过程中,有时我们需要对表进行备份,以防数据丢失或修改错误。在 SQL Server 中,可以使用 SE