You can use AutoIndentWriter if you want to support standard formatting.
ST template = group.getInstanceOf("YourTemplate"); OutputStreamWriter osWriter = new OutputStreamWriter(stream); STWriter stWriter = new AutoIndentWriter(osWriter); template.write(stWriter); osWriter.flush();
source share