A simpler approach is to use the printwriter, and writing XMLElement.toString() for the content of your files:
XMLElement xmle1 = ...;
PrintWriter output = createWriter("file_1.xml");
output.println(xmle1.toString());
output.flush(); // always flush before closing, just to be sure
output.close();
XMLElement xmle2 = ...;
output = createWriter("file_2.xml");
output.println(xmle2.toString());
output.flush();
output.close();
This does not generate xml files with a doctype, but they're certainly Processing-compatible in that the written XML can be read back in to form an equivalent XMLElement.
(reference page for PrintWriter: http://processing.org/reference/PrintWriter.html)