public class UnicodeFileReader extends UnicodeInputStreamReader
UnicodeInputStreamReader which gets its input from a
file. All constructors pass-thru to a UnicodeInputStreamReader constructor an InputStream that
is built using a FileInputStream constructor.close, getDecodingStrategy, getRequestedSignatureCharset, getSignatureCharset, mark, markSupported, read, read, read, read, ready, skippublic UnicodeFileReader(String fileName) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream)
and FileInputStream.FileInputStream(String)
constructors.fileName - The file name.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(String fileName, SignatureCharset requestedSignatureCharset) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
SignatureCharset) and FileInputStream.FileInputStream(String) constructors.fileName - The file name.requestedSignatureCharset - The signature/charset. It may
be null to use the default JVM charset.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(String fileName, DecodingStrategy decodingStrategy) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
DecodingStrategy) and FileInputStream.FileInputStream(String) constructors.fileName - The file name.decodingStrategy - The decoding strategy. It may be null
to use the default JVM charset.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(File file) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream)
and FileInputStream.FileInputStream(File) constructors.file - The file.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(File file, SignatureCharset requestedSignatureCharset) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
SignatureCharset) and FileInputStream.FileInputStream(File) constructors.file - The file.requestedSignatureCharset - The signature/charset. It may
be null to use the default JVM charset.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(File file, DecodingStrategy decodingStrategy) throws FileNotFoundException
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
DecodingStrategy) and FileInputStream.FileInputStream(File) constructors.file - The file.decodingStrategy - The decoding strategy. It may be null
to use the default JVM charset.FileNotFoundException - Propagated from the FileInputStream constructor.public UnicodeFileReader(FileDescriptor fd)
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream)
and FileInputStream.FileInputStream(FileDescriptor)
constructors.fd - The file descriptor.public UnicodeFileReader(FileDescriptor fd, SignatureCharset requestedSignatureCharset)
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
SignatureCharset) and FileInputStream.FileInputStream(FileDescriptor) constructors.fd - The file descriptor.requestedSignatureCharset - The signature/charset. It may
be null to use the default JVM charset.public UnicodeFileReader(FileDescriptor fd, DecodingStrategy decodingStrategy)
UnicodeInputStreamReader.UnicodeInputStreamReader(InputStream,
DecodingStrategy) and FileInputStream.FileInputStream(FileDescriptor) constructors.fd - The file descriptor.decodingStrategy - The decoding strategy. It may be null
to use the default JVM charset.Copyright © 2015. All Rights Reserved.