Package org.lobobrowser.html.parser
Class InputSourceImpl
- java.lang.Object
-
- org.xml.sax.InputSource
-
- org.lobobrowser.html.parser.InputSourceImpl
-
public class InputSourceImpl extends org.xml.sax.InputSourceTheInputSourceImplclass implements theInputSourceinterface.- Author:
- J. H. S.
-
-
Constructor Summary
Constructors Constructor Description InputSourceImpl()Deprecated.Use a constructor that takes either a stream or a reader.InputSourceImpl(java.io.InputStream byteStream)Deprecated.Use constructor withuriparameter.InputSourceImpl(java.io.InputStream byteStream, java.lang.String uri, java.lang.String charset)Constructs anInputSourceImpl.InputSourceImpl(java.io.Reader characterStream)Deprecated.Use constructor withuriparameter.InputSourceImpl(java.io.Reader characterStream, java.lang.String uri)Constructs anInputSourceImpl.InputSourceImpl(java.lang.String uri)Constructs anInputSourceImpl.
-
-
-
Constructor Detail
-
InputSourceImpl
public InputSourceImpl()
Deprecated.Use a constructor that takes either a stream or a reader.Constructs anInputSourceImpl.
-
InputSourceImpl
public InputSourceImpl(java.lang.String uri)
Constructs anInputSourceImpl.It is valid to use this constructor, but it is generally recommended that callers use one of the constructors that take a reader or an input stream instead.
- Parameters:
uri- The URI (or systemID) of the document.
-
InputSourceImpl
public InputSourceImpl(java.io.InputStream byteStream)
Deprecated.Use constructor withuriparameter.Constructs anInputSourceImpl.- Parameters:
byteStream- The input stream where content can be read.
-
InputSourceImpl
public InputSourceImpl(java.io.Reader characterStream)
Deprecated.Use constructor withuriparameter.Constructs anInputSourceImpl.- Parameters:
characterStream- TheReaderwhere characters can be read.
-
InputSourceImpl
public InputSourceImpl(java.io.Reader characterStream, java.lang.String uri)Constructs anInputSourceImpl.- Parameters:
characterStream- TheReaderwhere characters can be read.uri- The URI of the document.
-
InputSourceImpl
public InputSourceImpl(java.io.InputStream byteStream, java.lang.String uri, java.lang.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.
-
-