多个字符判断是否为空
多个字符判断是否为空
CAMELLIA多个字符判断是否为空
在涉及判断多个字符判断不为空的时候,一一列出过于繁琐。
1 | String name; |
上面代码当参数过多时就显得繁琐,而且有写错的风险。
commons-lang3 库提供了一组非常有用的工具类,其中包括 org.apache.commons.lang3.StringUtils
类的一部分。
在使用的时候导入坐标:
1 | <!-- https://mvnrepository.com/artifact/org.apache.commons/commons-lang3 --> |
以上代码可以简写成:
1 | if(StringUtils.isAnyBlank(name, password, age)) { |
该方法是当有任何一个为空就执行if语句。