C
cyberco
Using JDOM I want to remove all elements with attribute uid="x" from
the following xml:
=======================================
<root>
<ele>
<sub uid="x">
bla
</sub>
</ele>
<ele uid="x">
boe
</ele>
</root>
=======================================
How can I do that? Iterating and removing at the same time gives me
concurrent modification exceptions.
2B
the following xml:
=======================================
<root>
<ele>
<sub uid="x">
bla
</sub>
</ele>
<ele uid="x">
boe
</ele>
</root>
=======================================
How can I do that? Iterating and removing at the same time gives me
concurrent modification exceptions.
2B