Java - ByteArrayInputStream mark()



描述

Java ByteArrayInputStream mark(int readAheadLimit) 方法设置流中的当前标记位置。默认情况下,mark ByteArrayInputStream 在位置 0 处标记。

声明

以下是 java.io.ByteArrayInputStream.mark(int readAheadLimit) 方法的声明:

public void mark(int readAheadLimit)

参数

readLimit - 此类的此整数值没有任何意义。

返回值

此方法不返回值。

异常

示例 1

以下示例显示了 Java ByteArrayInputStream mark() 方法的用法。我们创建了一个名为 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 mark() 方法的用法。我们创建了一个名为 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
广告