Java XML Output - proper indenting for child items

后端 未结 3 1985
梦谈多话
梦谈多话 2021-02-11 05:50

I\'d like to serialize some simple data model into xml, I\'ve been using the standard java.org.w3c -related code (see below), the indentation is better than no \"OutputKeys.INDE

3条回答
  •  长发绾君心
    2021-02-11 05:57

    If the Transformer implementation you're using is Xalan-J, then you should be able to use:

    transformer.setOutputProperty(
       "{http://xml.apache.org/xslt}indent-amount", "5");
    

    See also: http://xml.apache.org/xalan-j/usagepatterns.html

提交回复
热议问题