I have a problem regarding writing in XML file through java using DOMparser. I want 2 add new tag in XML file like
I have a file as following
<EmployeeSet>
<Employee>
<FirstName>John</FirstName>
<LastName>David</LastName>
</Employee>
</EmployeeSet>
Now I want 2 add another <Employee> Tag in this file
How can I do it.