Google News
logo
Java GWT - Interview Questions
Define Parsing in GWT XML?
To parse the XML, we have to first parse the raw XML text into XML DOM structure. DOM structure helps in the navigation of the data. XML parser is located under XMLParser class. XMLParser class consists of parse(String) static method which is called to parse the XML and return a Document object.
Advertisement