I am new to Java and wanted to know if I have an xml file such as this:
`<?xml version="1.0" encoding="UTF-8"?>
<Runners>
<Runner Name="Germany">
<RunnersMoveIncrement>70</RunnersMoveIncrement>
<RestPercentage>10</RestPercentage>
</Runner>
<Runner Name="US">
<RunnersMoveIncrement>10</RunnersMoveIncrement>
<RestPercentage>9</RestPercentage>
</Runner>
<Runner Name="UK">
<RunnersMoveIncrement>20</RunnersMoveIncrement>
<RestPercentage>7</Restpercentage>
</Runner>
<Runner Name="CHINA">
<RunnersMoveIncrement>30</RunnersMoveIncrement>
<RestPercentage>15</RestPercentage>
</Runner>
</Runners>'
how do I read this and create threads for this xml file for each of the runner information using the attributes given ? There are so many articles saying so many ways. I am really confused what to do. Can someone give me some idea what to do or a reference as to how to do this?