我不是开发人员。
我需要破解XML文件来复制数百个分配了GUID的资源。有没有办法解析整个文件,用动态生成的文件替换标记中的每个GUID?
基本上 - 每个UniqueID标记(但不是ContentUniqueID标记)都需要一个新的GUID。
<root xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance'>
<Name>[redacted]</Name>
<UniqueId>7a136c33-3ea8-4f99-8f99-bbe411972203</UniqueId>
<Enabled>true</Enabled>
<Behavior>EmptyOnly</Behavior>
<Subscriptions />
<ScheduledFormatTemplates>
<ScheduledFormatTemplate>
<Name>[redacted]</Name>
<UniqueId>1cfaba3e-bfd5-4d2f-a1df-14020ad2f7da</UniqueId>
<ContentUniqueId>67c58741-fe1b-4c15-8dc0-8b4c01f6f18f</ContentUniqueId>
<ScheduledContents>
<ScheduledContent xsi:type="SFTR">
<Name>[redacted]</Name>
<UniqueId>b4a60646-b62b-43e7-b2a2-7d37875ab33f</UniqueId>
<ContentUniqueId>ba634a97-9faf-4bfa-a9b4-d8a2475b82e6</ContentUniqueId>
<ScheduledContents>
<ScheduledContent>
<Name>[redacted]</Name>
<UniqueId>6f8e6e6c-1f94-4caa-8730-6859448138eb</UniqueId>
<ContentUniqueId>938b0a24-4043-4a16-bc2d-25dbdb21a659</ContentUniqueId>
</ScheduledContent>
</ScheduledContents>
</ScheduledContent>
</ScheduledContents>
</ScheduledFormatTemplate>
</ScheduledFormatTemplates>
</root>
答案 0 :(得分:2)
我不知道这样的工具,但开发人员应该能够生成一个powershell脚本或perl脚本,在10-15分钟内完成。
如果您发布XML文件的样本,我敢打赌有人甚至可能会发布工作代码。如果您将Q作为挑战,那么您将有更多人回复。根据XML文件的复杂程度,它可能只有10行脚本。
如果还有其他要求,例如 - 如果您希望从特定范围中选择所有新GUID - 这仍然是可能且直截了当的,但您需要说明所有这些要求。
##
## ReplaceGuids.ps1
##
## Reads an XML document, and emits an output doc. The output replaces
## the Text value of each node in the input with LocalName="UniqueId", with
## a new Guid.
##
## Thu, 10 Dec 2009 12:06
##
# Create the XmlReader
$xr = [system.Xml.XmlReader]::Create("c:\data\Doug.xml")
# Create the XmlWriter
$sw = New-Object System.IO.StringWriter
$xw = New-Object System.Xml.XmlTextWriter $sw
$xw.Formatting = "indented"
$xw.Indentation = 2
$elementName = ""
# loop over each element in XmlReader
while ($true) {
if ($xr.Read() -eq $false) { break; }
switch ($xr.NodeType.ToString())
{
"Element" {
$xw.WriteStartElement($xr.Name)
$xw.WriteAttributes($xr, $false)
if ($xr.IsEmptyElement) { $xw.WriteEndElement(); $elementName = ""; }
else {$elementName = $xr.LocalName; }
}
"EndElement" {
$xw.WriteEndElement()
$elementName = ""
}
"Text" {
if ($elementName -eq "UniqueId") {
$guid = [System.Guid]::NewGuid()
$xw.WriteValue($guid.ToString())
} else {
$xw.WriteValue($xr.Value)
}
}
}
}
$xr.Close()
$xw.Flush()
$sw.Flush()
Write-Output $sw.ToString()
答案 1 :(得分:1)
有一个基于网络的工具执行此操作here