如何在Talend中的tfileinputxml组件中解析此xml文件。基本上,我对输出感兴趣:
tablespace|dw|john
tablespace|site|john
user|site|john
user|dw|john
这是我的xml文件
<?xml version="1.0" encoding="UTF-8"?>
<objects>
<tablespaces>
<tablespace>
<dbname>dw</dbname>
<user>john</user>
</tablespace>
<tablespace>
<dbname>site</dbname>
<user>john</user>
</tablespace>
</tablespaces>
<users>
<username>
<dbname>site</dbname>
<user>john</user>
</username>
<username>
<dbname>dw</dbname>
<user>john</user>
</username>
</users>
</objects>
答案 0 :(得分:0)
与客户讨论后,决定更改文件的结构。