How to read xml file?

dsfsdsdfdfsdfdsfthe node’s format as below:

<root>
<groups>
<group name= “abc”>
<category name = “iphone”>

            &lt;items
                &lt;item&gt;
                &lt;title&gt;New iPod&lt;/title&gt;
                &lt;description&gt;I got a new iPod&lt;/description&gt;
                &lt;image&gt;kresge.jpg&lt;/image&gt;
                &lt;/item&gt;
            &lt;/items&gt;
        &lt;/category&gt;
        
        &lt;category name = "accessory"&gt;
            &lt;items&gt;
                &lt;item&gt;
                    &lt;title&gt;Mouse&lt;/title&gt;
                    &lt;description&gt;Just like the one&lt;/description&gt;
                    &lt;image&gt;medialab.jpg&lt;/image&gt;
                &lt;/item&gt;
            &lt;/items&gt;
        &lt;/category&gt;        
    
    &lt;/group&gt;
&lt;/groups&gt;

</root>

im targeting to display the <title>,<description>and<image> only,can anyone please give me some guidance or provide me the link to similar tutorial?
thank you:proud: