import org.jdom.*;
import org.jdom.output.XMLOutputter;
import java.io.IOException;
public class HelloJDOM {
public static void main(String[] args) {
Element root = new Element("GREETING");
root.setText("Hello JDOM!");
Document doc = new Document(root);
// At this point the document only exists in memory.
// We still need to serialize it
XMLOutputter outputter = new XMLOutputter();
try {
outputter.output(doc, System.out);
}
catch (IOException e) {
System.err.println(e);
}
}
}