public class LineColumnReader
extends java.io.BufferedReader
LineColumnReader
is an extension to BufferedReader
that keeps track of the line and column information of where the cursor is.Constructor and Description |
---|
LineColumnReader(java.io.Reader reader)
Constructor wrapping a
Reader
(FileReader , FileReader , InputStreamReader , etc.) |
Modifier and Type | Method and Description |
---|---|
void |
close()
Closes the stream and releases any system resources associated with it.
|
long |
getColumn() |
long |
getColumnMark() |
long |
getLine() |
long |
getLineMark() |
void |
mark(int readAheadLimit)
Marks the present position in the stream.
|
int |
read()
Reads a single character.
|
int |
read(char[] chars)
Reads characters into an array.
|
int |
read(char[] chars,
int startOffset,
int length)
Reads characters into a portion of an array.
|
int |
read(java.nio.CharBuffer buffer)
Not implemented.
|
java.lang.String |
readLine()
Reads a line of text.
|
void |
reset()
Resets the stream to the most recent mark.
|
void |
setColumn(long column) |
void |
setColumnMark(long columnMark) |
void |
setLine(long line) |
void |
setLineMark(long lineMark) |
long |
skip(long toSkip)
Skips characters.
|
public LineColumnReader(java.io.Reader reader)
Reader
(FileReader
, FileReader
, InputStreamReader
, etc.)reader
- the reader to wrappublic void mark(int readAheadLimit) throws java.io.IOException
mark
in class java.io.BufferedReader
readAheadLimit
- Limit on the number of characters that may be read while still preserving the mark.
An attempt to reset the stream after reading characters up to this limit or beyond may fail.
A limit value larger than the size of the input buffer will cause a new buffer to be allocated whose size is no smaller than limit.
Therefore large values should be used with care.java.io.IOException
public void reset() throws java.io.IOException
reset
in class java.io.BufferedReader
java.io.IOException
public int read() throws java.io.IOException
read
in class java.io.BufferedReader
java.io.IOException
public int read(char[] chars, int startOffset, int length) throws java.io.IOException
read
in class java.io.BufferedReader
chars
- Destination array of charstartOffset
- Offset at which to start storing characterslength
- Maximum number of characters to readjava.io.IOException
public java.lang.String readLine() throws java.io.IOException
readLine
in class java.io.BufferedReader
java.io.IOException
public long skip(long toSkip) throws java.io.IOException
skip
in class java.io.BufferedReader
toSkip
- the number of characters to skipjava.io.IOException
public int read(char[] chars) throws java.io.IOException
read
in class java.io.Reader
chars
- Destination bufferjava.io.IOException
public int read(java.nio.CharBuffer buffer)
read
in interface java.lang.Readable
read
in class java.io.Reader
buffer
- Destination bufferjava.lang.UnsupportedOperationException
- as the method is not implementedpublic void close() throws java.io.IOException
close
in interface java.io.Closeable
close
in interface java.lang.AutoCloseable
close
in class java.io.BufferedReader
java.io.IOException
public long getColumn()
public void setColumn(long column)
public long getColumnMark()
public void setColumnMark(long columnMark)
public long getLine()
public void setLine(long line)
public long getLineMark()
public void setLineMark(long lineMark)