How could you pull data from an XML file and insert into a Java array or array list?
A sample of the XML file below that I would like to import into an array:
<dataset>
<record>
<id>1</id>
<full_name>Ernestus Ellins</full_name>
</record>
<record>
<id>2</id>
<full_name>Tyson Haysey</full_name>
</record>