Tôi có một số XML được tạo bằng Scala được nhúng, nhưng nó không đặt XML được tạo trên các dòng riêng biệt.Tạo XML được định dạng trong Scala
Hiện nay, có vẻ như thế này,
<book id="0">
<author>Gambardella, Matthew</author><publish_date>Sun Oct 01 00:00:00 EDT 2000</publish_date><description>An in-depth loo
k at creating applications with XML.</description><price>44.95</price><genre>Computer</genre><title>XML Developer's Guide</title>
</book>
nhưng tôi muốn nó trông như thế này:
<book id="0">
<author>Gambardella, Matthew</author>
<publish_date>Sun Oct 01 00:00:00 EDT 2000</publish_date>
<description>An in-depth look at creating applications with XML.</description>
<price>44.95</price>
<genre>Computer</genre>
<title>XML Developer's Guide</title>
</book>
Làm thế nào tôi có thể kiểm soát các định dạng? Đây là mã mà tạo ra XML
<book id="0">
{ keys map (_.toXML) }
</book>
đây là ToXml:
def toXML:Node = XML.loadString(String.format("<%s>%s</%s>", tag, value.toString, tag))
Bản sao có thể có của [Cách tạo XML được định dạng tốt trong Scala?] (Http://stackoverflow.com/questions/3364627/how-to-produce-nicely-formatted-xml -in-scala) – Suma