StringUtils中 isNotEmpty 和isNotBlank的区别【java字符串判空】
原文地址:https://www.cnblogs.com/dixinyunpan/p/6088612.htmlisNotEmpty(str)等价于str!=null&&str.length>0isNotBlank(str)等价于str!=null&&str.length>0&&str.trim().length>0同理isEmpty等价于str==null||str.length==0isBlan