Skip to content
Advertisement

Java – code will always throw a Null Pointer Exception when no Property is present?

I have inherited the following java code, that gets the value of a property from a properties file:

JavaScript

The intended behavior in the above flow is that personName will either be retrieved from the properties file or will be returned as null if its not there, and handled accordingly.

However when the property is not there an exception is thrown in the getFileProperty() method (shown below).

How can I fix this to have the intended behavior?

getFileProperty():

JavaScript

Note – the getProperty() method being called in the code above is java utils getProperty method.

Advertisement

Answer

You should wrap your code in a try catch block.

JavaScript

Edit: Alternatively provide a defaultValue to .getFileProperty()

JavaScript
User contributions licensed under: CC BY-SA
3 People found this is helpful
Advertisement