if i have the XML file like this,
<CoDetails>
<SupportingDocument>
<documentID>LC</documentID>
<fileType>COO3333.jpeg</fileType>
<fileSize>123</fileSize>
</SupportingDocument>
<SupportingDocument>
<documentID>RE</documentID>
<fileType>COO2222.jpeg</fileType>
<fileSize>100</fileSize>
</SupportingDocument>
<SupportingDocument>
<documentID>LP</documentID>
<fileType>COO1111.jpeg</fileType>
<fileSize>200</fileSize>
</SupportingDocument>
<SupportingDocument>
<documentID>BL</documentID>
<fileType>COO34444.jpeg</fileType>
<fileSize>300</fileSize>
</SupportingDocument>
</CoDetails>
can u please give me the
java codes to retreive separately the values in each of the "supportingDocument" tag in a vector containing "documentID", "fileType" and "FileSize" values
thanks
sathish :roll: