OutputFormat format = OutputFormat.createPrettyPrint();
       format.setEncoding("utf-8");           
        XMLWriter writer = new XMLWriter(new FileOutputStream("test.xml"),format);
    writer.write(document);
    writer.close();
.....