當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。