Java ByteArrayOutputStream类简介说明
下文笔者讲述ByteArrayOutputStream类的简介说明,如下所示:
例
ByteArrayOutputStream类的功能: 创建一个新的字节数组输出流 其数组默认大小为32 当要修改容量大小,传入size即可
ByteArrayOutputStream类的构造函数
public ByteArrayOutputStream() public ByteArrayOutputStream(int size) 参数说明 size:初始大小
ByteArrayOutputStream类中的方法
public void write(int b) |
public void write(byte[] b,int off,int len) |
public void writeTo(OutputStream out) //将指定的字节写入此字节数组输出流,此方法继承于OutputStream,可以参考OutputStream.write |
public String toString() //指定字符集将缓冲区的内容转换为字符串。 |
public String toString(String charsetName) |
public String toString(int hibyte) |
OutputStream.toByteArray 转换成byte[]字节数组 |
public void reset() //将此字节数组输出流的计数字段重置为零,以便丢弃该输出流中所有当前累积的输出 |
public int size() //返回缓冲区的当前大小 |
public void close() //关闭输出流 |
public static void main(String[] args) { ByteArrayOutputStream bos = null; FileInputStream fs = null; try { bos = new ByteArrayOutputStream(); fs = new FileInputStream("D:\\java265.txt"); int len; while((len = fs.read()) != -1) { // 把读取到的数据逐个写到ByteArrayOutputStream中 bos.write(len); } byte[] array = bos.toByteArray(); // 指定utf-8解码的字符集 System.out.println(new String(array, "utf-8")); fs.close(); } catch(IOException e) {} finally { fs.close(); } }
版权声明
本文仅代表作者观点,不代表本站立场。
本文系作者授权发表,未经许可,不得转载。