解析tFileInputXML中的xml文件

时间:2015-09-22 11:46:20

标签: xml-parsing talend

如何在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>

1 个答案:

答案 0 :(得分:0)

与客户讨论后,决定更改文件的结构。