Java – Check Empty String

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:

Leave a comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.