Package ch.rabanti.nanoxlsx4j.lowLevel
Class XmlDocument
java.lang.Object
ch.rabanti.nanoxlsx4j.lowLevel.XmlDocument
Class for simplified XML access without dealing with start and end elements or streams. It loads an XML file from a
stream and processes it in a structured document, similar to the XmlDocument class in .NET (System.Xml)
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic class
Class representing an XML attributestatic class
Class representing an iterable list of XML attributesstatic class
Class representing a single XML node with possible attributes and sub-nodesstatic class
Class representing an iterable list of XML nodes -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionGets the root node of the XML documentvoid
load
(InputStream stream) Loads an XML document from a stream
-
Constructor Details
-
XmlDocument
public XmlDocument()
-
-
Method Details
-
getDocumentElement
Gets the root node of the XML document- Returns:
- XML node (top level)
-
load
Loads an XML document from a stream- Parameters:
stream
- Input Stream- Throws:
IOException
- Throws IOException in case of an error, caught by the libraryIOException
- Throws IOException in case of a stream error
-