I am parsing XML javax.xml, but I want to know if a tag exists for a node child For example
<tag>
<child>
<special_tag>Special</special_tag>
<normal_tag>Normal</normal_tag>
</child>
<child>
<normal_tag>Normal</normal_tag>
</child>
</tag>
I'm trying to find out which child has a special tag and which
source
share