Java ByteArrayOutputStream reset()方法

java.io.ByteArrayOutputStream.reset() 用于将字节数组输出流的计数字段重置为零值。

1 语法

public void reset()

2 参数

3 返回值

4 示例 

package com.yiidian;

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

public class Demo {
    public static void main(String[] args) throws IOException {
        ByteArrayOutputStream baos = null;

        try {
            String str = "";

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

            // writing byte to output stream
            baos.write(75);

            // output stream to string
            str = baos.toString();
            System.out.println("Before Resetting : "+str);

            // reset() method invocation
            baos.reset();

            // writing byte to output stream
            baos.write(65);

            // output stream to string()
            str = baos.toString();
            System.out.println("After Resetting : "+ str);

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

输出结果为:

Before Resetting : K
After Resetting : A

热门文章

优秀文章