public class XMLParser extends Object
Modifier and Type | Method and Description |
---|---|
static Document |
createDocument()
This method creates a new document, to be manipulated by the DOM API.
|
static Document |
parse(String contents)
This method parses a new document from the supplied string, throwing a
DOMParseException if the parse fails. |
static void |
removeWhitespace(Node n)
This method removes all
Text nodes which are made up of only
white space. |
static boolean |
supportsCDATASection()
This method determines whether the browser supports
CDATASection
as distinct entities from Text nodes. |
public static Document createDocument()
public static Document parse(String contents)
DOMParseException
if the parse fails.contents
- the String to be parsed into a Document
Document
public static void removeWhitespace(Node n)
Text
nodes which are made up of only
white space.n
- the node which is to have all of its whitespace descendents
removed.public static boolean supportsCDATASection()
CDATASection
as distinct entities from Text
nodes.CDATASection
, otherwise
false
.Copyright © 2018. All rights reserved.