org.apache.commons札记

StringUtils.isBlank(null); //true
StringUtils.isBlank(""); //true
StringUtils.isBlank(" "); //true
StringUtils.isBlank("abc"); //false

原文地址:https://www.cnblogs.com/angelshelter/p/3725919.html