Package org.eclipse.rdf4j.common.xml
Class DocumentUtil
java.lang.Object
org.eclipse.rdf4j.common.xml.DocumentUtil
Utilities to make working with DOM documents easier.
- Author:
- Herko ter Horst
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionstatic Document
getDocument
(URL location) Create a Document representing the XML file at the specified location.static Document
getDocument
(URL location, boolean validating, boolean namespaceAware) Create a Document representing the XML file at the specified location.static Document
getDocument
(URL location, Schema schema) Create a Document representing the XML file at the specified location.
-
Constructor Details
-
DocumentUtil
public DocumentUtil()
-
-
Method Details
-
getDocument
Create a Document representing the XML file at the specified location.- Parameters:
location
- the location of an XML document- Returns:
- a Document representing the XML file
- Throws:
IOException
- when there was a problem retrieving or parsing the document.
-
getDocument
public static Document getDocument(URL location, boolean validating, boolean namespaceAware) throws IOException Create a Document representing the XML file at the specified location.- Parameters:
location
- the location of an XML documentvalidating
- whether the XML parser used in the construction of the document should validate the XMLnamespaceAware
- whether the XML parser used in the construction of the document should be aware of namespaces- Returns:
- a Document representing the XML file
- Throws:
IOException
- when there was a problem retrieving or parsing the document.
-
getDocument
Create a Document representing the XML file at the specified location.- Parameters:
location
- the location of an XML documentschema
- a Schama instance to validate against- Returns:
- a Document representing the XML file
- Throws:
IOException
- when there was a problem retrieving or parsing the document.
-