我使用scala.xml.PrettyPrinter在Scala中格式化我的XML。问题在于没有文本内容的节点。而不是:
<node></node>
我更喜欢这个:
<node />
如何让PrettyPrinter以我的方式格式化?
答案 0 :(得分:7)
这是scala-xml中的一个错误,但它已于2018年2月20日版本的1.1.0中修复。 minimizeEmpty
已添加新选项PrettyPrinter
。
要使用1.1.0,请将以下内容添加到build.sbt
:
libraryDependencies ++= Seq(
"org.scala-lang.modules" %% "scala-xml" % "1.1.0"
)
以下是如何在PrettyPrinter
中使用新选项的示例:
val pp = new xml.PrettyPrinter(80, 2, minimizeEmpty = true)
val x = <node><leaf></leaf></node>
println(pp.format(x))
这将输出:
<node>
<leaf/>
</node>
如果是Scala编译器,请抱怨:
java.lang.NoSuchMethodError: scala.xml.PrettyPrinter.<init>(IIZ)V
然后您需要在sbt中启用分叉JVM,以便Scala使用新版本的scala-xml。只需将关注添加到build.sbt
:
fork := true
在scala-xml 1.1.0之前,创建<node/>
,leafTag()
的方法在类中,但未使用。您可以像这样修复它:
import xml._
val p2 = new PrettyPrinter(120, 2) {
override protected def traverse(node:Node, pscope:NamespaceBinding, ind:Int) =
node match {
case n:Elem if n.child.size == 0 => makeBox(ind, leafTag(n))
case _ => super.traverse(node, pscope, ind)
}
}
如果你可以升级到1.1.0,没有理由使用override-hack。