|
com.Ostermiller.util Java Utilities |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
java.lang.Objectjava.io.Reader
com.Ostermiller.util.NoCloseReader
public class NoCloseReader
A reader which a close method with no effect. More information about this class is available from ostermiller.org.
This class is designed to wrap a normal reader so that it can be passed to methods that read from it and may erroneously close it. This class is a workaround when the method cannot be modified because it is in a library.
| Field Summary | |
|---|---|
protected Reader |
in
The reader that is being protected. |
| Fields inherited from class java.io.Reader |
|---|
lock |
| Constructor Summary | |
|---|---|
NoCloseReader(Reader in)
Protect a new reader. |
|
| Method Summary | |
|---|---|
void |
close()
Has no effect. |
void |
mark(int readlimit)
|
boolean |
markSupported()
|
int |
read()
|
int |
read(char[] cbuf)
|
int |
read(char[] cbuf,
int off,
int len)
|
boolean |
ready()
|
void |
reallyClose()
Actually closes this stream and releases any system resources associated with the stream, as opposed to the close() method, which does nothing. |
void |
reset()
|
long |
skip(long n)
|
| Methods inherited from class java.io.Reader |
|---|
read |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected Reader in
| Constructor Detail |
|---|
public NoCloseReader(Reader in)
in - The reader that is being protected.| Method Detail |
|---|
public int read()
throws IOException
read in class ReaderIOException
public int read(char[] cbuf)
throws IOException
read in class ReaderIOException
public int read(char[] cbuf,
int off,
int len)
throws IOException
read in class ReaderIOException
public long skip(long n)
throws IOException
skip in class ReaderIOException
public boolean ready()
throws IOException
ready in class ReaderIOException
public void close()
throws IOException
close in interface Closeableclose in class ReaderIOExceptionreallyClose()
public void mark(int readlimit)
throws IOException
mark in class ReaderIOException
public void reset()
throws IOException
reset in class ReaderIOExceptionpublic boolean markSupported()
markSupported in class Reader
public void reallyClose()
throws IOException
reallyClose in interface NoCloseStreamIOException - if an I/O error occurs.
|
com.Ostermiller.util Java Utilities |
|||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||
Copyright (c) 2001-2007 by Stephen Ostermiller