Java ByteArrayOutputStream size()方法

java.io.ByteArrayOutputStream.size() 用于返回缓冲区的当前大小。

1 语法

public int size()

2 参数

3 返回值

返回输出流中累积的缓冲区的当前大小。

4 示例 

package com.yiidian;

/**
 * 一点教程网: http://www.yiidian.com
 */
/**
 * java.io.ByteArrayOutputStream.size()方法的例子
 */
import java.io.ByteArrayOutputStream;
import java.io.IOException;

public class Demo {
    public static void main(String[] args) throws IOException {
        String str = "";
        int size = 0;

        byte[] bs = {65, 66, 67, 68, 69};
        ByteArrayOutputStream baos = null;

        try {
            // create new ByteArrayOutputStream
            baos = new ByteArrayOutputStream();

            // for each byte in the buffer
            for (byte b : bs) {

                // write byte in to output stream
                baos.write(b);

                // convert output stream to string
                str = baos.toString();
                size = baos.size();

                // print
                System.out.print(size+":");
                System.out.println(str);
            }

        } catch(Exception e) {
            // if I/O error occurs
            e.printStackTrace();
        } finally {
            if(baos!=null)
                baos.close();
        }
    }
}

输出结果为:

1:A
2:AB
3:ABC
4:ABCD
5:ABCDE

热门文章

优秀文章