<tableCategory>
<item app_name="APPNAME1i" desc="BDESC1" lang="1ODDD"/>
</tableCategory>
In the above xml tag, I want to add one more item as follows-
<item app_name="APPNAME2" desc="DESC2" lang="2ODDD"/>
So finally the XML tag will look like-
<tableCategory>
<item app_name="APPNAME1i" desc="BDESC1" lang="1ODDD"/>
<item app_name="APPNAME2" desc="DESC2" lang="2ODDD"/>
</tableCategory>
I am getting the tag -
Element paletteElement = (Element) doc.getElementsByTagName("tableCategory").item(0); //tag
But not getting the clue after that.