public interface IXMLParser
| Modifier and Type | Method and Description |
|---|---|
IXMLElement |
parse(InputStream inputStream)
Parse the given stream to a XML
|
IXMLElement |
parse(InputStream inputStream,
String systemId)
Parse the given stream to a XML and set the systemId to the inputSource.
|
IXMLElement |
parse(String inputString)
Parse the given text as an xml
|
IXMLElement |
parse(URL inputURL)
Parse the resource at the url specified
|
IXMLElement parse(InputStream inputStream)
inputStream - Stream to parse. Must be not null.XMLException - if something went wrong.IXMLElement parse(InputStream inputStream, String systemId)
inputStream - Stream to parse. Must be not null.systemId - System id of the file parsedXMLException - if something went wrong.IXMLElement parse(String inputString)
inputString - Xml written in a stringXMLException - if something went wrong.IXMLElement parse(URL inputURL)
inputURL - Url of the resourceXMLExceptionCopyright © 2001–2025. All rights reserved.