gpt4 book ai didi

xml - 在 Scala 中向 XML 文件添加或附加新元素而不是替换它

转载 作者:数据小太阳 更新时间:2023-10-29 02:34:31 24 4
gpt4 key购买 nike

我的 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>

相反,我希望它只是将它附加为 ClientConfig 的单个子项,例如最后三个子项已经存在于文件中

<ClientConfig>
<host name="bob" env="flat"/>
<host name="george" env="flat"/>
<host name="alice" env="flat"/>
<host name="bernice" env="flat"/>
</ClientConfig>

我该怎么办?例如python有一个简单的insert方法

最佳答案

在你的例子中,当模式匹配到

case e: Elem if isCorrectLocation(current, e, host) => toAdd

toAdd 方法将使用主机,您传入的环境 addNewEntry(data, host, env) . bob 代表主机,flat 代表环境。因此,toAdd 将始终返回 <host name="bob" env="flat"/> .

假设您有这样的 client.xml:

   <Root>
<ServerConfig>
<host name="allen" env="flat"/>
</ServerConfig>
<ClientConfig>
<host name="george" env="flat"/>
<host name="alice" env="flat"/>
<host name="bernice" env="flat"/>
</ClientConfig>
</Root>

以下代码是我尝试完成它的方式。

    def toBeAddedEntry(name: String, env: String) = <host name={ name } env={ env } />
def addNewEntry(originalXML: Elem, name: String, env: String) = {
originalXML match {
case e @ Elem(_, _, _, _, configs @ _*) => {
val changedNodes = configs.map {
case <ClientConfig>{ innerConfigs @ _* }</ClientConfig> => {
<ClientConfig> { toBeAddedEntry(name, env) ++ innerConfigs }</ClientConfig>
}
case other => other
}
e.copy(child = changedNodes)
}
case _ => originalXML
}
}

val originalXML = XML.load("client.xml")
val printer = new scala.xml.PrettyPrinter(80,5)
println(printer.format(addNewEntry(originalXML, "bob", "flat")))


// result
<Root>
<ServerConfig>
<host env="flat" name="allen"/>
</ServerConfig>
<ClientConfig>
<host name="bob" env="flat"/>
<host env="flat" name="george"/>
<host env="flat" name="alice"/>
<host env="flat" name="bernice"/>
</ClientConfig>
</Root>

另外,在这个过程中我注意到一件事。 XML.load 实际上reverses attribute order ,也许它与解决您的问题无关,但只需将其添加到此处以备不时之需。

关于xml - 在 Scala 中向 XML 文件添加或附加新元素而不是替换它,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31753336/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com