我在使用iib v10时遇到了一种情况,其中一个soap web服务发送的xml响应在同一xml元素中同时包含英语和反向阿拉伯语。
例子:
<note>
<to>Tove رمع</to>
<from>Jani ريمس</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
应该是这样的
<note>
<to>Tove عمر</to>
<from>Jani سمير</from>
<heading>Reminder</heading>
<body>Don't forget me this weekend!</body>
</note>
所以我已经准备了一些java代码,它接受一个字符串,将其拆分为字符串数组中的单词,并检查一个单词是否是阿拉伯语单词,然后将其反转,然后重新连接该字符串。
问题是后端响应有点大,我需要遍历xml树中的每个元素,所以java计算节点中是否有任何方法允许遍历树中的每个元素并将其值作为字符串获取?
1条答案
按热度按时间2skhul331#
递归是你的朋友。使用根元素调用以下函数: