XmlCompressor compressor = new XmlCompressor();
compressor.setRemoveIntertagSpaces(true);
compressor.setRemoveComments(true);
compressor.setEnabled(true);
String output = compressor.compress(fromStream(in));//out, minifyProperty.getLineBreakPosition());
in.close();
in = null;
out = new OutputStreamWriter(new FileOutputStream(outputFile), minifyProperty.getCharset());