1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
| SAXBuilder sxb= new SAXBuilder();
try
{ doc = sxb.build(new File("essai1.xml"));
}
catch (Exception e){}
services=doc.getRootElement();
List service1=services.getChildren("service");
Iterator k = service1.iterator();
try
{
while(k.hasNext())
{
Element courant=(Element)k.next();
key=courant.getChildText("cle");
if((key.equals(kw)))
{
courant.removeChild("service");
courant.removeChild("cle");
courant.removeChild("date_arr");
courant.removeChild("originator");
courant.removeChild("destination");
courant.removeChild("heure_arr");
courant.removeChild("sms_in");
courant.removeChild("code");
courant.removeContent();
courant.removeChild("service");
//else courant.removeChild("service");//removeChild("service");
XMLOutputter sortie = new XMLOutputter(Format.getPrettyFormat());
sortie.output(doc, new FileOutputStream("essai1"));
}
}
}
catch (Exception e){}
}
//TODO add your code for b2.actionPerformed
} |
Partager