isBlank函数和isEmpty函数的区别
String str1 = null;
String str2 = "";
String str3 = " ";
String str4 = "hello";
System.out.println(StrUtil.isBlank(str1)); // true
System.out.println(StrUtil.isBlank(str2)); // true
System.out.println(StrUtil.isBlank(str3)); // true
System.out.println(StrUtil.isBlank(str4)); // false
System.out.println(StrUtil.isEmpty(str1)); // true
System.out.println(StrUtil.isEmpty(str2)); // true
System.out.println(StrUtil.isEmpty(str3)); // false
System.out.println(StrUtil.isEmpty(str4)); // false