码迷,mamicode.com
首页 > 编程语言 > 详细

【JAVA】【8】StringUtils中isNotEmpty和isNotBlank的区别

时间:2019-04-11 19:17:44      阅读:303      评论:0      收藏:0      [点我收藏+]

标签:apache   style   ons   apach   空格   https   null   class   unp   

前言:

1,StringUtils.isNotEmpty(str)和StringUtils.isNotBlank(str)都是用来做非空判断的

2,通常用isNotBlank

3,import org.apache.commons.lang.StringUtils;

正文:

1,主要差别:isNotBlank多了去除字符串前后空格再做判断

isNotEmpty(str) 等价于 str != null && str.length > 0
isNotBlank(str) 等价于 str != null && str.length > 0 && str.trim().length > 0
同理
isEmpty 等价于 str == null || str.length == 0
isBlank 等价于 str == null || str.length == 0 || str.trim().length == 0

2,StringUtils需要的jar包

pom.xml

<dependency>
    <groupId>commons-lang</groupId>
    <artifactId>commons-lang</artifactId>
    <version>2.6</version>
</dependency>

参考博客:

1,StringUtils中 isNotEmpty 和isNotBlank的区别【java字符串判空】 - 涤新云 - 博客园

https://www.cnblogs.com/dixinyunpan/p/6088612.html

【JAVA】【8】StringUtils中isNotEmpty和isNotBlank的区别

标签:apache   style   ons   apach   空格   https   null   class   unp   

原文地址:https://www.cnblogs.com/huashengweilong/p/10691553.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!