我正在Powershell中读取以下文件。

<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <nested1>
    <level1 xsi:nil="true" />
    <level2>2</level2>
  </nested1>
  <nested2>
    <level1 xsi:nil="true" />
    <level2>2</level2>
  </nested2>
</root>

使用...
[xml]$XmlDoc = get-content $XMLFile

我想设定
$ XmlDoc.root.nested1.level2
因此它具有属性xsi:nil =“true”

因此文件显示为
<root xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <nested1>
    <level1 xsi:nil="true" />
    <level2 xsi:nil="true" />
  </nested1>
  <nested2>
    <level1 xsi:nil="true" />
    <level2>2</level2>
  </nested2>
</root>

非常感谢您提供的任何建议。

最佳答案

使用SetAttribute()并提供 namespace URI。

$node = $XmlDoc.SelectSingleNode('//nested1/level2')
$node.SetAttribute('nil', 'http://www.w3.org/2001/XMLSchema-instance', 'true') |
    Out-Null

08-26 23:35