Posts by Diego Almeida • 31 points
1 post
-
3
votes3
answers29445
viewsA: How to check if the String is null or blank in Java / Android
Another interesting API to use is the Google Guava. It has a number of features for this type of task. An example of use would be: import com.google.common.base.Strings; Strings.isNullOrEmpty("");…