System.out.println(label);
Element root = dom.getRoot();
Writer writer = new OutputStreamWriter(System.out);
CharacterEncoder encoder = getCharacterEncoder();
DocumentOutputter outputter = new DOMDocumentOutputter(
new XMLDocumentWriter(writer), encoder);
try {
outputter.output(root);
writer.flush();
System.out.println();
} catch (IOException e) {