public class EncodingDetectorInputStream extends InputStream
| Constructor and Description |
|---|
EncodingDetectorInputStream(InputStream in)
Create the stream
|
| Modifier and Type | Method and Description |
|---|---|
int |
available() |
void |
close() |
String |
getDetectedCharset()
Gets the detected charset, null if not yet detected.
|
void |
mark(int arg0) |
boolean |
markSupported() |
int |
read() |
int |
read(byte[] b) |
int |
read(byte[] b,
int off,
int len) |
void |
reset() |
long |
skip(long n) |
public EncodingDetectorInputStream(InputStream in)
in - The InputStream to read frompublic int available()
throws IOException
available in class InputStreamIOExceptionpublic void close()
throws IOException
close in interface Closeableclose in interface AutoCloseableclose in class InputStreamIOExceptionpublic void mark(int arg0)
mark in class InputStreampublic boolean markSupported()
markSupported in class InputStreampublic int read()
throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b,
int off,
int len)
throws IOException
read in class InputStreamIOExceptionpublic int read(byte[] b)
throws IOException
read in class InputStreamIOExceptionpublic void reset()
throws IOException
reset in class InputStreamIOExceptionpublic long skip(long n)
throws IOException
skip in class InputStreamIOExceptionpublic String getDetectedCharset()
Copyright © 2020. All rights reserved.