To avoid null exceptions, we usually validate against null and emptiness as shown:
if(object != null && !object.equals("")) { }
We can simplify this as below:
if(!"".equals(object)) { }
Visit the DevX Tip Bank