假设我有一个这样的 Atom 条目:
<entry xmlns:custom="http://custom.xsd">
<title>test</title>
<custom:solution>42</custom:solution>
</entry>
如果我将条目加载到 Apache Abdera,我会得到一个不错的org.apache.abdera.model.Entry
实例。我现在可以使用 getter 方便地访问所有标准 Atom 元素。
但是我将如何42
从custom:solution
元素中读取值?