i’ve got an xml like this:
<dict>
<key>id</key>
<string><![CDATA[ 1 ]]></string>
<key>posizione</key>
<string><![CDATA[ 1 ]]></string>
<key>id_parent</key>
<string><![CDATA[ 0 ]]></string>
<key>prodotto</key>
<string><![CDATA[ Caduta temporanea ]]></string>
</dict>
<dict>
<key>id</key>
<string><![CDATA[ 1 ]]></string>
<key>posizione</key>
<string><![CDATA[ 1 ]]></string>
<key>id_parent</key>
<string><![CDATA[ 0 ]]></string>
<key>prodotto</key>
<string><![CDATA[ Caduta temporanea ]]></string>
</dict>
how can i parse this to obtain a simple string for each ?
usually, i use this method: Android xml with cdata return nothing
but with this, i obtain only the first couple of
can someone help me?
Use below Code for Parse Same Tag Using Dom Parser.