StringUtils 常用方法 1.isEmpty(String str) 是否为空,空格字符为false2.isNotEmpty(String str) 是否为非空,空格字符为true3.isBlank(String str) 是否为空,空格字符为true4.isNotBlank(String str) 是否为非空,空格字符为false5.trim(String str)去除字符串两端的控制符,空字符串.null 返回 null6.trimToEmpty(String str) 去除字符串两…