I have an XML file that needs 3 attributes in an element. How can I arrange the attributes of the street, zip code and city as I wanted?
<address street="Big Street" zip="2012" city="Austin">
</address>
@XmlType(name="Street)
@XmlRootElement(name = "Street")
public class Street {
@XmlAttribute
private String name;
@XmlAttribute
private String type;
... set and get method
}
source
share