1494
|
1 package goodjava.io;
|
|
2
|
|
3 import java.io.InputStream;
|
|
4 import java.io.FilterInputStream;
|
|
5 import java.io.IOException;
|
|
6
|
|
7
|
|
8 public class NoMarkInputStream extends FilterInputStream {
|
|
9
|
|
10 public NoMarkInputStream(InputStream in) {
|
|
11 super(in);
|
|
12 }
|
|
13
|
|
14 public final void mark(int readlimit) {}
|
|
15
|
|
16 public final void reset() throws IOException {
|
|
17 throw new IOException("mark/reset not supported");
|
|
18 }
|
|
19
|
|
20 public final boolean markSupported() {
|
|
21 return false;
|
|
22 }
|
|
23
|
|
24 }
|