2

我正在 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>

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

4

1 回答 1

5

使用SetAttribute()并提供命名空间 URI。

$node = $XmlDoc.SelectSingleNode('//nested1/level2')
$node.SetAttribute('nil', 'http://www.w3.org/2001/XMLSchema-instance', 'true') | 
    Out-Null
于 2013-07-27T20:22:01.917 回答