使用PowerShell 2.0将多个XML文件合并为一个?

时间:2010-06-04 07:38:30

标签: xml powershell powershell-v2.0

我有一个非常大的XML文件目录,结构如下:

file1.xml:

<root>
 <EmployeeInfo attr="one" />
 <EmployeeInfo attr="two" />
 <EmployeeInfo attr="three" />
</root>

file2.xml:

<root>
 <EmployeeInfo attr="four" />
 <EmployeeInfo attr="five" />
 <EmployeeInfo attr="six" />
</root>

现在我正在寻找一种将这些文件(* .xml)文件合并到一个输出文件中的简单方法:

<root>
 <EmployeeInfo attr="one" />
 <EmployeeInfo attr="two" />
 <EmployeeInfo attr="three" />
 <EmployeeInfo attr="four" />
 <EmployeeInfo attr="five" />
 <EmployeeInfo attr="six" />
</root>

我正在考虑使用纯XSLT,例如:

<xsl:transform version="1.0" 
  xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
  <xsl:template match="/">
    <Container>
      <xsl:copy-of select="document('file1.xml')"/>
      <xsl:copy-of select="document('file2.xml')"/>        
    </Container>
  </xsl:template>
</xsl:stylesheet>

这可行,但不如我想要的那么灵活。作为PowerShell(第2版)的新手,渴望学习在PowerShell中使用XML的新的最佳实践,我想知道将XML文档的结构合并为一个最简单,最纯粹的 PowerShell方式是什么?

干杯, 乔金姆

2 个答案:

答案 0 :(得分:11)

虽然XSLT的方法很短,但PowerShell的方式也是如此:

$finalXml = "<root>"
foreach ($file in $files) {
    [xml]$xml = Get-Content $file    
    $finalXml += $xml.InnerXml
}
$finalXml += "</root>"
([xml]$finalXml).Save("$pwd\final.xml")

希望这有帮助,

答案 1 :(得分:2)

我个人不会将PowerShell用于此类任务。

通常,您使用PowerShell访问此类配置文件

$config = [xml](gc web.config)

然后你可以像对象一样使用xml。很酷。 如果您需要处理大型xml结构,那么使用[xml](相当于XmlDocument)的内存非常昂贵。

然而,这几乎是PowerShell支持xml的所有内容(get-command *xml* -CommandType cmdlet将为您提供所有类似xml的命令)。
当然可以将.NET类用于xml操作,但该代码不会像真正的PowerShell方法那样漂亮。所以,对于你的任务,你需要使用一些读者/作者,这是不值得的。

这就是为什么我认为xslt是更好的方法;) 如果您需要灵活,可以在脚本执行期间生成xlst模板或只替换文件名,这没问题。