我想转换这个xml:
<Root>
<Result>
<Message>
<Header>
<!-- Hundreds of child nodes -->
</Header>
<Body>
<Node1>
<!-- Hundreds of child nodes -->
<Node2>
<!-- Hundreds of child nodes -->
<Node3>
<!-- Hundreds of child nodes -->
<NodeX>value 1 to be changed</NodeX>
<!-- Hundreds of child nodes -->
<Node4>
<!-- Hundreds of child nodes -->
<NodeY>value 2 to be changed</NodeY>
</Node4>
</Node3>
</Node2>
</Node1>
</Body>
<RealValuesRoot>
<!-- These two nodes -->
<Value ID="1">this value must replace the value of Node X</Value>
<Value ID="2">this value must replace the value of Node Y</Value>
</RealValuesRoot>
</Message>
</Result>
<!-- Hundreds to thousands of similar MessageRoot nodes -->
</Root>
进入这个xml:
<Root>
<Result>
<Message>
<Header>
<!-- Hundreds of child nodes -->
</Header>
<Body>
<Node1>
<!-- Hundreds of child nodes -->
<Node2>
<!-- Hundreds of child nodes -->
<Node3>
<!-- Hundreds of child nodes -->
<NodeX>this value must replace the value of Node X</NodeX>
<!-- Hundreds of child nodes -->
<Node4>
<!-- Hundreds of child nodes -->
<NodeY>this value must replace the value of Node Y</NodeY>
</Node4>
</Node3>
</Node2>
</Node1>
</Body>
</Message>
</Result>
<!-- Hundreds to thousands of similar MessageRoot nodes -->
</Root>
除了以下更改外,输出几乎与输入相同:
- X 和 Y 节点值必须替换为 /RealValuesRoot/Value 节点的值。
- 必须从输出中删除 /RealValuesRoot 节点。
- xml 的其余部分在输出中必须保持不变。
“值”节点具有唯一 ID,表示消息正文中的唯一 xpath,例如 ID 1 引用 xpath /Message/Body/Node1/Node2/Node3/NodeX。
我得用微软的xslt 1.0版!!
我已经有一个可以正常工作的 xslt 并且可以满足我的所有需求,但我对性能并不满意!
我的 xslt 工作方式如下:
我创建了一个全局字符串变量,其作用类似于键值对,例如:1:xpath1_2:xpath2_ … _N:xpathN。此变量将“Value”节点的 ID 与消息正文中需要替换的节点相关联。
xslt 从根节点开始递归地迭代输入 xml。
我计算当前节点的 xpath,然后执行以下操作之一:
- 如果当前 xpath 完全匹配全局列表中的 xpath 之一,那么我将其值替换为相应“Value”节点的值并继续迭代。
- 如果当前 xpath 引用“RealValuesRoot”节点,那么我忽略该节点(不要将其复制到输出)并继续递归迭代。
- 如果全局 ID-xpath 字符串中不存在当前 xpath,则我将完整节点复制到输出并继续迭代。(例如,这种情况发生在 /Message/Header 节点中,该节点永远不会包含任何需要替换的节点)
- 如果当前 xpath 部分匹配全局列表中的 xpath 之一,那么我只需继续递归迭代,直到达到上述 3 种情况之一。
如前所述,我的 xslt 工作正常,但我想尽可能提高性能,请随时提出一个全新的 xslt 逻辑!欢迎您的想法和建议!