Package jspecview.common
Class JSVZipFileSequentialReader
java.lang.Object
java.io.Reader
java.io.BufferedReader
jspecview.common.JSVZipFileSequentialReader
- All Implemented Interfaces:
Closeable
,AutoCloseable
,Readable
,JSVZipReader
Reads the entire contents of a ZIP file as though it were one straight file
Skips and entry that contains '\0'
Allows for a moderate amount of buffered reading via mark()
- Author:
- Bob Hanson hansonr@stolaf.edu
-
Field Summary
-
Constructor Summary
Constructors -
Method Summary
Methods inherited from class java.io.BufferedReader
lines, markSupported, read, ready, skip
Methods inherited from class java.io.Reader
nullReader, read, read, transferTo
-
Constructor Details
-
JSVZipFileSequentialReader
public JSVZipFileSequentialReader()
-
-
Method Details
-
set
- Specified by:
set
in interfaceJSVZipReader
-
close
public void close()- Specified by:
close
in interfaceAutoCloseable
- Specified by:
close
in interfaceCloseable
- Overrides:
close
in classBufferedReader
-
mark
public void mark(int limit) - Overrides:
mark
in classBufferedReader
-
reset
public void reset()- Overrides:
reset
in classBufferedReader
-
read
public int read(char[] chars, int chPt, int chLen) - Overrides:
read
in classBufferedReader
-
readLine
- Overrides:
readLine
in classBufferedReader
-