How to parse this with simpleXml or JAXB (I want to convert it to a java object) :
<properties xmlns:im="http://itunes.apple.com/rss">
<id im:id="one">id1</id>
<name>name1</name>
</properties>
How to parse this with simpleXml or JAXB (I want to convert it to a java object) :
<properties xmlns:im="http://itunes.apple.com/rss">
<id im:id="one">id1</id>
<name>name1</name>
</properties>
You could map it with the following classes using a JAXB (JSR-222) implementation.
Properties
}
Id
Since the attribute is namespace qualified you need to include this in the
@XmlAttribute
annotation.For More Information