java.io.Closeable
, java.lang.AutoCloseable
, java.lang.Readable
public final class AsciiReader
extends java.io.Reader
Constructor | Description |
---|---|
AsciiReader(java.io.InputStream input) |
Constructs the reader.
|
Modifier and Type | Method | Description |
---|---|---|
void |
close() |
|
void |
mark(int readAheadLimit) |
|
int |
read() |
|
int |
read(char[] buf,
int off,
int len) |
|
boolean |
ready() |
|
void |
reset() |
|
long |
skip(long n) |
public AsciiReader(java.io.InputStream input)
public int read() throws java.io.IOException
read
in class java.io.Reader
java.io.IOException
public int read(char[] buf, int off, int len) throws java.io.IOException
read
in class java.io.Reader
java.io.IOException
public long skip(long n) throws java.io.IOException
skip
in class java.io.Reader
java.io.IOException
public boolean ready() throws java.io.IOException
ready
in class java.io.Reader
java.io.IOException
public void mark(int readAheadLimit) throws java.io.IOException
mark
in class java.io.Reader
java.io.IOException
public void reset() throws java.io.IOException
reset
in class java.io.Reader
java.io.IOException
public void close() throws java.io.IOException
close
in interface java.lang.AutoCloseable
close
in interface java.io.Closeable
close
in class java.io.Reader
java.io.IOException
Copyright © 2018. All rights reserved.