J
Jose Oliver
I am trying to figure out the best approach on reading a
portion of an XML file.
I have the following:
<Employees>
<Employee>
<Name>John Doe</Name>
<Address>...
</Employee>
<Employee>
<Name>Jane Doe</Name>
<Address>...
</Employee>
I only need to read all the child elements below the
<Address> for John Doe.
How can I do this?
- j. oliver
portion of an XML file.
I have the following:
<Employees>
<Employee>
<Name>John Doe</Name>
<Address>...
</Employee>
<Employee>
<Name>Jane Doe</Name>
<Address>...
</Employee>
I only need to read all the child elements below the
<Address> for John Doe.
How can I do this?
- j. oliver