当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Java ByteArrayInputStream mark()用法及代码示例


mark()方法是Java.io.ByteArrayInputStream的内置方法标记输入流的当前位置。它设置了readlimit,即在标记位置变为无效之前可以读取的最大字节数。

用法

public void mark(int arg)

参数:该函数接受一个强制性参数arg,该参数指定在标记位置变为无效之前可以读取的最大字节数。


返回值:该函数不返回任何内容。

下面是上述函数的实现:

示例1:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 5, 6, 7, 8, 9 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
  
        System.out.println("Mark() invocation"); 
  
        // mark() invocation; 
        exam.mark(0); 
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
输出:
5
6
7
Mark() invocation
8
9

示例2:

// Java program to implement 
// the above function 
import java.io.*; 
  
public class Main { 
    public static void main(String[] args) throws Exception 
    { 
  
        byte[] buf = { 1, 2, 3 }; 
  
        // Create new byte array input stream 
        ByteArrayInputStream exam 
            = new ByteArrayInputStream(buf); 
  
        // print bytes 
        System.out.println(exam.read()); 
  
        System.out.println("Mark() invocation"); 
  
        // mark() invocation; 
        exam.mark(3); 
        System.out.println(exam.read()); 
        System.out.println(exam.read()); 
    } 
}
输出:
1
Mark() invocation
2
3

参考: https://docs.oracle.com/javase/10/docs/api/java/io/ByteArrayInputStream.html#mark(int)



相关用法


注:本文由纯净天空筛选整理自gopaldave大神的英文原创作品 ByteArrayInputStream mark() method in Java with Examples。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。