System.out.println("Age : " + ((Node)textAgeList.item(0)).getNodeValue().trim());
Assumes this is printing the age Change like this
System.out.println("Age : " + ((Node)textAgeList.item(0)).asXMLString().subString(55));
XMLString() will return an xmlstring just remove the "<?xml version="1.0"?>" so we added the substring function