我想知道您是否可以在处理过程中访问结果文件。
我之所以要求我改变输入文件, 是因为我想根据某些条件插入内容,
变换的 xml 看上去类似 :
<xform>
<xforms>
<model>
<instance>
<data />
<data />
</instance>
</model>
<bind />
<bind />
<bind />
</xforms>
</xform>
在转换过程中(在上述xml序列化之前),我打算访问
Note The input document is different from the above xml - the above xml is what the transformation should produce.
同样,我想访问 元素,并插入额外的
因此,最后文件看起来是这样的(假设我增加了2个数据节点和2个绑定节点):
<xform>
<xforms>
<model>
<instance>
<data />
<data />
<data>new data node</data>
<data>second new data node</data>
</instance>
</model>
<bind />
<bind />
<bind />
<bind>new bind node</bind>
<bind>second new bind node</bind>
</xforms>
</xform>
感谢任何帮助。