I have created classes from XSD using JAXB, and want to assign these to new variables in my program.
Example XML
<street>137 EXAMPLE STREET</street>
<suburb>SYDNEY</suburb>
<state>NSW</state>
To access the address values I use
String street = Address.getStreet();
String suburb= Address.getSuburb();
String state= Address.getState();
This works fine, however if the xml has
<street />
Executing the following throws a null pointer
String street = Address.getStreet();
Can I avoid putting an if statement around all of these?
if (Address.getStreet() != Null)
{
Address.getStreet();
}
Bearing in mind my XML will have hundreds of elements and putting this if/then statement. Is there something fundamental I'm missing?
Address.getStreet()will only cause aNullPointerExceptionifAddressis null. What type of behaviour are you looking for? – Blaise Doughan Oct 5 '12 at 0:51