Java - ByteArrayInputStream reset()



描述

Java ByteArrayInputStream reset() 方法将缓冲区重置到最后标记的位置。如果未显式指定标记,则标记位置为 0。

声明

以下是 java.io.ByteArrayInputStream.reset() 方法的声明:

public void reset()

参数

返回值

此方法不返回值。

异常

示例 1

以下示例演示了 Java ByteArrayInputStream reset() 方法的使用。我们创建了一个名为 buf 的 byte[] 变量,并用一些字节初始化它。我们创建了一个 ByteArrayInputStream 引用,然后用 buf 变量初始化它。我们使用 read() 方法读取前三个字节,然后使用 mark() 方法重置标记当前位置,然后再次读取字节。然后我们调用 reset() 方法将头部重置到先前标记的位置,并再次读取字节。

package com.tutorialspoint;
import java.io.ByteArrayInputStream;
import java.io.IOException;
public class ByteArrayInputStreamDemo {
   public static void main(String[] args) throws IOException {
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;
      
      try {
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
         
         // print bytes
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
         System.out.println("Mark() invocation");

         // mark() invocation;
         bais.mark(0);
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
         System.out.println("Reset() invocation");
         
         // reset() invocation
         bais.reset();
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }   
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Byte read 65
Byte read 66
Byte read 67
Mark() invocation
Byte read 68
Byte read 69
Reset() invocation
Byte read 68
Byte read 69

示例 2

以下示例演示了 Java ByteArrayInputStream reset() 方法的使用。我们创建了一个名为 buf 的 byte[] 变量,并用一些字节初始化它。我们创建了一个 ByteArrayInputStream 引用,然后用 buf 变量初始化它。我们使用 read() 方法读取前两个字节,然后使用 mark() 方法重置标记到当前位置,然后再次读取字节。然后我们调用 reset() 方法将头部重置到先前标记的位置,并再次读取字节。

package com.tutorialspoint;
import java.io.ByteArrayInputStream;
import java.io.IOException;
public class ByteArrayInputStreamDemo {
   public static void main(String[] args) throws IOException {
      byte[] buf = {65, 66, 67, 68, 69};
      ByteArrayInputStream bais = null;
      
      try {
         // create new byte array input stream
         bais = new ByteArrayInputStream(buf);
         
         // print bytes
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
         System.out.println("Mark() invocation");

         // mark() invocation;
         bais.mark(0);
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
         System.out.println("Reset() invocation");
         
         // reset() invocation
         bais.reset();
         System.out.println("Byte read "+ bais.read());
         System.out.println("Byte read "+ bais.read());
         
      } catch(Exception e) {
         // if I/O error occurs
         e.printStackTrace();
      } finally {
         if(bais!=null)
            bais.close();
      }   
   }
}

输出

让我们编译并运行以上程序,这将产生以下结果:

Byte read 65
Byte read 66
Mark() invocation
Byte read 67
Byte read 68
Byte read 69
Reset() invocation
Byte read 67
Byte read 68
java_bytearrayinputstream.htm
广告