isEmpty 等价于:
str == null || str.length == 0
isBlank 等价于:
str == null || str.length == 0 || str.trim().length == 0
StringUtils方法的操作对象是java.lang.String类型的对象
StringUtils中一共有130多个方法,并且都是static的,所以我们可以这样调用StringUtils.xxx()