out = new FileOutputStream(file);
            XMLOutputter serializer = new XMLOutputter();

            // jdom output format
            Format f = Format.getPrettyFormat(); // output 출력 포맷 - pretty format : whitespace beautification with 2-space indents, uses the UTF-8 encoding 등
            serializer.setFormat(f);

            serializer.output(xmlDoc, out);
            out.flush();


http://www.jdom.org/docs/apidocs/index.html