public static void main(String[] args) throws IOException, JDOMException ...{
Document table = new Document(new Element(Constants.DATA_TABLE)); Element row = new Element(Constants.DATA_ROW); Element item = new Element(Constants.DATA_ITEM); item.setText("data"); row.setContent(item); table.getRootElement().setContent(row);
Format format = Format.getPrettyFormat(); XMLOutputter outputter = new XMLOutputter(format); FileWriter writer = new FileWriter("sample.xml"); outputter.output(table, writer); writer.close();