Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

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?

share|improve this question
1  
Address.getStreet() will only cause a NullPointerException if Address is null. What type of behaviour are you looking for? – Blaise Doughan Oct 5 '12 at 0:51

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.