I try to remove a node from my xml with jdom2 but i don't find the answer
my xml is like this :
<?xml version="1.0" encoding="UTF-8"?>
<banque>
<compte idCompte="5646">
<numCompte>5646</numCompte>
<nom>Ludo</nom>
<solde>850</solde>
</compte>
<compte idCompte="4546">
<numCompte>4546</numCompte>
<nom>Antoine</nom>
<solde>9999.4</solde>
</compte>
i think i need to target the attribute idCompte and remove it but i don't know how to do this.
if you have a (simple) solution i'm very pleased to see :)