【发布时间】:2020-01-25 14:49:55
【问题描述】:
我想只转储 BMW 汽车的数据以使其表现出色。我确实有数千个 XML 文件,并且许多条目会有所不同(在本例中为 3,它可以从 0 到 5)。
考虑到这种情况,我必须在 UIPATH 中增加计数器或事务项。但首先我想将这个 XML 文件的数据转储到 excel 中,我希望在附件中给出输出
<country>
<state>Texas</state>
<cars>
<brand>BMW</brand>
<model>X1</model>
<unit>210000</unit>
</cars>
<cars>
<brand>BMW</brand>
<model>X6</model>
<unit>210000</unit>
</cars>
<cars>
<brand>BMW</brand>
<model>X7</model>
<unit>210000</unit>
</cars>
<cars>
<brand>Ford</brand>
<model>mustang</model>
<unit>319000</unit>
</cars>
<cars>
<brand>Volvo</brand>
<model>XC90</model>
<unit>91100</unit>
</cars>
</country>
**输出 - **
【问题讨论】:
标签: xml xml-parsing xml-deserialization uipath