check is string is empty java code example
Example: check if a string is empty java
if (myString == null || myString.equals(""))
throw new IllegalArgumentException("empty string");
if (myString == null || myString.equals(""))
throw new IllegalArgumentException("empty string");