void reset int read(byte b, int off, int len) long skip(long n) 描述 所述java.io.InputStream.reset()方法在标记方法最后调用对此输入流的时间重新定位该流的位置。 声明 以下是java.io.InputStream.reset()方法的声明 public void reset() 参数 NA 返回值 该方法不返回任何值。 异常 IOException - 如果发生I / O错误。 实例 以下示例显示了java.io.InputStream.reset()方法的用法。 package com.tutorialspoint; import java.io.BufferedReader; import java.io.FileInputStream; import java.io.InputStream; public class InputStreamDemo { public static void main(String[] args) throws Exception { InputStream is = null; try { // new input stream created is = new FileInputStream("C://test.txt"); System.out.println("Characters printed:"); // create new buffered reader // reads and prints BufferedReader System.out.println((char)is.read()); System.out.println((char)is.read()); // mark invoked at this position is.mark(0); System.out.println("mark() invoked"); System.out.println((char)is.read()); System.out.println((char)is.read()); // reset() repositioned the stream to the mark if(is.markSupported()) { is.reset(); System.out.println("reset() invoked"); System.out.println((char)is.read()); System.out.println((char)is.read()); } else { System.out.print("InputStream does not support reset()"); } } catch(Exception e) { // if any I/O error occurs e.printStackTrace(); } finally { // releases system resources associated with this stream if(is!=null) is.close(); } } } 假设我们有一个文本文件c:/test.txt,它具有以下内容。此文件将用作示例程序的输入 ABCDE 让我们编译并运行上面的程序,这将产生以下结果 Characters printed: A B mark() invoked C D InputStream does not support reset() int read(byte b, int off, int len) long skip(long n)