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)
相關用法
- Java ByteArrayInputStream available()用法及代碼示例
- Java ByteArrayInputStream close()用法及代碼示例
- Java ByteArrayInputStream skip()用法及代碼示例
- Java ByteArrayInputStream reset()用法及代碼示例
- Java ByteArrayInputStream markSupported()用法及代碼示例
- Java CharArrayReader mark(int)用法及代碼示例
- Java LongBuffer mark()用法及代碼示例
- Java Reader mark(int)用法及代碼示例
- Java StringReader mark(int)用法及代碼示例
- Java PushbackReader mark(int)用法及代碼示例
- Java IntBuffer mark()用法及代碼示例
- Java ShortBuffer mark()用法及代碼示例
- Java Buffer mark()用法及代碼示例
- Java CharBuffer mark()用法及代碼示例
- Java DoubleBuffer mark()用法及代碼示例
注:本文由純淨天空篩選整理自gopaldave大神的英文原創作品 ByteArrayInputStream mark() method in Java with Examples。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。