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
| try {
File s = new File("/DMIF/boisson.xml");
s.createNewFile();
FileWriter f = new FileWriter(s);
f.write("<?xml version=\"1.0\" encoding=\"utf-8\"?>");
f.write("<bar>");
f.write("\r\n");
//Pour chaque boisson on crée le xml
for (com.bar.Boisson c : lst) {
f.write("<boisson>");
f.write("\r\n");
f.write("<id>");
f.write(String.valueOf(c.getId()));
f.write("</id>");
f.write("\r\n");
f.write("<nom>");
f.write(c.getNom());
f.write("</nom>");
f.write("\r\n");
f.write("<type>");
f.write(c.getType());
f.write("</type>");
f.write("\r\n");
f.write("<prix>");
f.write(String.valueOf(c.getPrix()));
f.write("</prix>");
f.write("\r\n");
f.write("<description>");
f.write(c.getDescription());
f.write("</description>");
f.write("\r\n");
f.write("</boisson>");
}
f.write("\r\n");
f.write("</bar>");
f.close(); |