私のjsoupクラスでは、次のように各タグのテキストを取得します
doc = Jsoup.parse(getxml,"", Parser.xmlParser());
libelle = doc.select("belle");
結果は pin pin pin apple apple apple 34233 4433 314434
それから私はそれを次のように分割します
libel = libelleCompte.text().toString().split(" ");
元のタグは次のとおりです
<pretty>
<belle> pin pin pin</belle>
<belle>apple apple apple</belle>
<belle>34233</belle>
<belle>4433</belle>
<belle>314434</belle>
</pretty>
結果は
ピン ピン ピン アップル アップル アップル 34233 4433 314434
各タグの後に分割する方法はありますか?