STRING TEST IF EMPTY JAVA code example
Example 1: check if string is null or empty java
if(str != null && !str.isEmpty()) { /* do your stuffs here */ }
Example 2: check if a string is empty java
if (myString == null || myString.equals(""))
throw new IllegalArgumentException("empty string");