Prev Class | Next Class | Frames | No Frames |
Summary: Nested | Field | Method | Constr | Detail: Nested | Field | Method | Constr |
InputSource
org.lobobrowser.html.parser.InputSourceImpl
public class InputSourceImpl
extends InputSource
InputSourceImpl
class implements
the InputSource
interface.
Constructor Summary | |
| |
| |
| |
| |
| |
|
public InputSourceImpl()
Constructs anInputSourceImpl
.
public InputSourceImpl(InputStream byteStream)
Deprecated. Use constructor with
uri
parameter.Constructs anInputSourceImpl
.
- Parameters:
byteStream
- The input stream where content can be read.
public InputSourceImpl(InputStream byteStream, String uri, String charset)
Constructs anInputSourceImpl
.
- Parameters:
byteStream
- The input stream where content can be read.uri
- The URI that identifies the content.charset
- The character set of the input stream.
public InputSourceImpl(Reader characterStream)
Deprecated. Use constructor with
uri
parameter.Constructs anInputSourceImpl
.
- Parameters:
characterStream
- TheReader
where characters can be read.
public InputSourceImpl(Reader characterStream, String uri)
Constructs anInputSourceImpl
.
- Parameters:
characterStream
- TheReader
where characters can be read.uri
- The URI of the document.
public InputSourceImpl(String systemId)
Constructs anInputSourceImpl
. Note that the parameter does not represent a string to be parsed. To parse a string, use a StringReader.
- Parameters:
systemId
- The system ID of the input source.