If you don’t want to use Apache Commons which i show you in previous post. You can use the following static function to check if a string is empty.
public static boolean notEmpty(String s) {
return (s != null && s.length() > 0);
}
Done =)
Reference:
