Package org.snakeyaml.engine.v2.api
Class YamlUnicodeReader
- java.lang.Object
-
- java.io.Reader
-
- org.snakeyaml.engine.v2.api.YamlUnicodeReader
-
- All Implemented Interfaces:
Closeable,AutoCloseable,Readable
public class YamlUnicodeReader extends Reader
Generic unicode textreader, which will use BOM mark to identify the encoding to be used. If BOM is not found then use a given default or system encoding.
-
-
Constructor Summary
Constructors Constructor Description YamlUnicodeReader(InputStream in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidclose()CharsetgetEncoding()Get stream encoding or NULL if stream is uninitialized.protected voidinit()Read-ahead four bytes and check for BOM marks.intread(char[] cbuf, int off, int len)-
Methods inherited from class java.io.Reader
mark, markSupported, nullReader, read, read, read, ready, reset, skip, transferTo
-
-
-
-
Constructor Detail
-
YamlUnicodeReader
public YamlUnicodeReader(InputStream in)
- Parameters:
in- InputStream to be read
-
-
Method Detail
-
getEncoding
public Charset getEncoding()
Get stream encoding or NULL if stream is uninitialized. Call init() or read() method to initialize it.- Returns:
- the name of the character encoding being used by this stream.
-
init
protected void init() throws IOExceptionRead-ahead four bytes and check for BOM marks. Extra bytes are unread back to the stream, only BOM bytes are skipped.- Throws:
IOException- if InputStream cannot be created
-
close
public void close() throws IOException- Specified by:
closein interfaceAutoCloseable- Specified by:
closein interfaceCloseable- Specified by:
closein classReader- Throws:
IOException
-
read
public int read(char[] cbuf, int off, int len) throws IOException- Specified by:
readin classReader- Throws:
IOException
-
-