我有这个 xml 输出。
<Envelope pf:urn="urn:pf:envelope:1234">
<ib:Item>1</ib:Item>
<ib:Amount>15</ib:Amount>
<ib:Location pf:url="http://mypage.com/1234/location" pf:urn="Envelope1234"/>
</Envelope>
我有这个 POJO
import javax.xml.bing.annotation.*;
@XmlType(namespace="http://mypage.com/schemas/ib/2")
public class Envelope{
@XmlElement(name="Item")
private int item;
@XmlElement(name="Amount")
private int amount;
}
我需要从 Location 元素中获取 url 属性。POJO 会是什么样子呢?