私のscalaコードは現在、xmlファイルのセクション全体を、追加している新しいタグに置き換えることになります。タグを ClientConfig の子として一度だけ追加したいのですが、このセクションにあるすべてのタグをそれ自体に置き換えます。
val data = XML.load(file)
val p = new XMLPrettyPrinter(2)
val tryingtoAdd = addNewEntry(data,host,env)
p.write(tryingtoAdd)(System.out)
ここで、host=bob と env=flat は以前に定義されており、addNewEntry は次のように定義されています。
private def isCorrectLocation(parent: Elem, node: Elem, host: String): Boolean = {
parent.label == "ClientConfig" && node.label == "host"
}
def addNewEntry(elem:Elem, host: String, env: String): Elem ={
val toAdd = <host name={host} env={env} />
def addNew(current: Elem): Elem = current.copy(
child = current.child.map {
case e: Elem if isCorrectLocation(current, e, host) ⇒ toAdd
case e: Elem ⇒ addNew(e)
case other ⇒ other
}
)
addNew(elem)
}
それが生成するxmlは
<ClientConfig>
<host name="bob" env="flat"/>
<host name="bob" env="flat"/>
<host name="bob" env="flat"/>
<host name="bob" env="flat"/>
</ClientConfig>
代わりに、最後の3つの子がすでにファイルに存在していたこのような ClientConfig の単一の子として追加したい
<ClientConfig>
<host name="bob" env="flat"/>
<host name="george" env="flat"/>
<host name="alice" env="flat"/>
<host name="bernice" env="flat"/>
</ClientConfig>
私は何をしますか?たとえば、pythonには単純な挿入メソッドがあります