Java中的 PushbackInputStream reset() 方法及示例
Java中PushbackInputStream类的reset()方法用于将 steam 重置到调用 mark() 方法的位置。此方法对 PushbackInputStream 没有任何作用。
句法:
public void reset()
throws IOException
覆盖:此方法覆盖FilterInputStream类的 reset() 方法。
参数:此方法不接受任何参数。
返回值:此方法不返回任何值。
异常:只要调用此方法,此方法就会抛出IOException 。
下面的程序说明了 IO 包中 PushbackInputStream 类的 reset() 方法:
方案一:
// Java program to illustrate
// PushbackInputStream reset() method
import java.io.*;
public class GFG {
public static void main(String[] args)
throws IOException
{
// Create an array
byte[] byteArray
= new byte[] { 'G', 'E', 'E',
'K', 'S' };
// Create inputStream
InputStream inputStr
= new ByteArrayInputStream(byteArray);
// Create object of
// PushbackInputStream
PushbackInputStream pushbackInputStr
= new PushbackInputStream(inputStr);
for (int i = 0; i < byteArray.length; i++) {
// Read the character
System.out.print(
(char)pushbackInputStr.read());
}
// Revoke reset() but it does nothing
pushbackInputStr.reset();
}
}
输出:
Exception in thread “main” java.io.IOException: mark/reset not supported
GEEKS
方案二:
// Java program to illustrate
// PushbackInputStream reset() method
import java.io.*;
public class GFG {
public static void main(String[] args)
throws IOException
{
// Create an array
byte[] byteArray
= new byte[] { 'H', 'E', 'L',
'L', 'O' };
// Create inputStream
InputStream inputStr
= new ByteArrayInputStream(byteArray);
// Create object of
// PushbackInputStream
PushbackInputStream pushbackInputStr
= new PushbackInputStream(inputStr);
// Revoke reset()
pushbackInputStr.reset();
for (int i = 0; i < byteArray.length; i++) {
// Read the character
System.out.print(
(char)pushbackInputStr.read());
}
}
}
输出:
Exception in thread “main” java.io.IOException: mark/reset not supported
参考:
https://docs.oracle.com/javase/10/docs/api/java Java()
在评论中写代码?请使用 ide.geeksforgeeks.org,生成链接并在此处分享链接。