1

我有一个使用 commons config (XMLConfiguration) 构建的 xml 配置文件

<servers>
  <server>
   <name>Google</name>
   <address>www.google.com</address>
  <server>
  <server>
   <name>Yahoo</name>
   <address>www.yahoo.com</address>
  </server>
</servers>

我可以通过获取这样的服务器列表来获取要更新的正确节点:

List<HierarchicalConfiguration> serverList = config.configurationsAt("server");
for(HierarchicalConfiguration server : serverList){
  if(server.getString("name").equals("Google")){
    //now I have the node I want to work with
    // and I can update it but I cannot delete it completely
  }

我不明白如何删除节点。如果我调用 server.clear(),数据会消失,但会保留一个空节点。

<servers>
  <server/>
  <server>
   <name>Yahoo</name>
   <address>www.yahoo.com</address>
  </server>
</servers>

我想做的是完全删除节点。

4

2 回答 2

1

我确实找到了一种方法。不确定这是否是最好的方法,但对于其他人来说:

您需要找到节点的索引,然后使用 XMLConfiguration.clearProperty() 或 XMLConfiguration.clearTree() 按地址删除它。这是在我的问题中使用配置文件的示例:

//config 是我的 XMLConfiguration 对象

List<HierarchicalConfiguration> serverList = config.configurationsAt("server");
Integer index = 0;

for(HierarchicalConfiguration server : serverList){
  if(server.getString("name").equals("Google")){
    //for Google, this evaluates to "server(0)", for Yahoo, "server(1)" 
    config.clearTree("server("+Integer.toString(index)+")");
  }
  index++; //increment the index at the end of each loop
}
//don't forget to write changes to file
config.save();
于 2013-10-30T21:23:17.067 回答
0

您还可以使用 XPATH:

config.clearTree("servers/server[name='Google']");
于 2018-07-16T15:04:29.770 回答