Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVA

how to check null and empty string in java

if(str != null && !str.isEmpty())
Be sure to use the parts of && in this order, because java will not proceed to evaluate the second part if the first part of && fails, thus ensuring you will not get a null pointer exception from str.isEmpty() if str is null.
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #check #null #empty #string #java
ADD COMMENT
Topic
Name
6+8 =