Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
これは xml です。残念ながら、XML のどの部分も変更できません。
<allowance name ='' /> <allowance type ='' /> <allowance value='' />
そして、Javaのxpathで「許容値」だけを取得する必要があります。どうすればそれができますか?
試すことができます:/ root // allowance [@value]
この式は、'value' 属性を持つすべての 'allowance' 要素を返します。
//allowance[@value]
これは、「値」の値だけを返します。
//allowance[@value]/@value