XMLファイルのボディをorg.w3c.dom.Document.classに変換
このシナリオは、Talend ESB、Talend Data Services Platform、Talend MDM Platform、Talend Real Time Big Data Platform、Talend Data Fabricにのみ適用されます。
Talendがサポートしているテクノロジーの詳細は、Talend Mediationコンポーネントを参照してください。
このシナリオでは、cConvertBodyToコンポーネントを使って、XMLファイルのボディをorg.w3c.dom.Document.classに変換します。次に、cBeanコンポーネントはorg.w3c.dom.Documentクラスをインポートし、そのコンテンツを確認して、ルートエレメント名と各[category] (カテゴリー)エレメントのコンテンツを出力します 。
XMLファイルは次のとおりです。
<bookstore>
<bookshelf>
<category>Cooking</category>
<quantity>100</quantity>
</bookshelf>
<bookshelf>
<category>Languages</category>
<quantity>200</quantity>
</bookshelf>
<bookshelf>
<category>Arts</category>
<quantity>300</quantity>
</bookshelf>
<bookshelf>
<category>Science</category>
<quantity>400</quantity>
</bookshelf>
</bookstore>