I have to parse through XML Files with a complicated structure--
Given below is a brief summary of one portion of the structure--
"PA"----------- Top level Group element that comprises of ar, pars, paes and one more element...
---"ar" Group element --comprised of reel-no, frame-no, last-update-date, purge-indicator, recorded-date, page-count, correspondent, conveyance-text. In "ar" we require "last-update-date" and "recorded date"
--- "pars" group element- comprised of one or more "pr" elements.--"pr" is a group element comprised of name, and execution-date.
Note that from above, there may be one or more "pr" elements within a single root record and relation is root or PA --> pars --> one or more pr elements.
Now I have already navigated to a single root element (ie element of PA) using the following code---
//get a nodelist of elements
NodeList nl = docEle.getElementsByTagName("PA");
if(nl != null && nl.getLength() > 0) {
for(int i = 0 ; i < nl.getLength();i++) {
//get the PA element
Element el = (Element)nl.item(i);
//now add code so as to obtain a node list of "pr" elements.
}
Is it possible to parse through the single element obtained above, (treating that element itself like a complex xml structure) so that I can obtain the nodelist of "pr" elements? I already have a single "PA" element (within which the nodelist of "pr" elements should be). For your reference, the exact relation between "PA" and "pr" is root or PA --> pars --> one or more pr elements.