XML 置換を実行するために最適または最も使いやすいライブラリは何ですか?
例:
<content>
<employee>
<name>membersound</name>
<id>1</id>
</employee>
</content>
タグを探したい
<employee><name>
<id>
タグ内の内容を置き換えます。
要素を探してその内部を<employee>
置換/削除するxslt を定義できます。<id>
あなたの他の質問のように、Jsoupを試すことができます- それは Html パーサーでもあります。
Element xmlDoc = // ...
/* If 'name' is not relevant you can use "employee > id" instead */
for( Element e : xmlDoc.select("employee > name + id") )
{
e.text("30");
}
System.out.println(xmlDoc.select("employee"));
出力:
<employee>
<name>
membersound
</name>
<id>
30
</id>
</employee>