Loading... ## springboot 字符串判断为空或者非空 引入apache commons-lang包 ```xml <!-- StringUtils工具类 --> <dependency> <groupId>commons-lang</groupId> <artifactId>commons-lang</artifactId> <version>2.5</version> </dependency> ``` - isBlank等价于params == null || “”.equals(params) || params.trim() == “” - isNotBlank等价于params!=null && !“”.equals(params) && params.trim() != “” 最后修改:2023 年 03 月 05 日 © 允许规范转载 打赏 赞赏作者 支付宝微信 赞 如果觉得我的文章对你有用,请随意赞赏