isEmpty 和 isBlank 的用法区别,至少一半的人答不上来...

举报
民工哥 发表于 2022/09/02 22:24:53 2022/09/02
【摘要】 点击下方“Java编程鸭”关注并标星 更多精彩 第一时间直达 文章来源:https://sourl.cn/dRpJ6b 也许你两个都不知道,也许你除了isEmpty/isNotEmpty/isNotBlank/isBlank外,并不知道还有isAnyEmpty/isNoneEmpty/isAnyBlank/isNoneBl...

点击下方“Java编程鸭”关注并标星

更多精彩 第一时间直达

2b874bfe86c38eac6405f7c7f40d8ff7.png

文章来源:https://sourl.cn/dRpJ6b

也许你两个都不知道,也许你除了isEmpty/isNotEmpty/isNotBlank/isBlank外,并不知道还有isAnyEmpty/isNoneEmpty/isAnyBlank/isNoneBlank的存在, come on ,让我们一起来探索org.apache.commons.lang3.StringUtils;这个工具类。

isEmpty系列

StringUtils.isEmpty()

是否为空. 可以看到 " " 空格是会绕过这种空判断,因为是一个空格,并不是严格的空值,会导致 isEmpty(" ")=false


   
  1. StringUtils.isEmpty(null) = true
  2. StringUtils.isEmpty("") = true
  3. StringUtils.isEmpty(" ") = false
  4. StringUtils.isEmpty("bob") = false
  5. StringUtils.isEmpty(" bob ") = false
  6. /**
  7.  *
  8.  * <p>NOTE: This method changed in Lang version 2.0.
  9.  * It no longer trims the CharSequence.
  10.  * That functionality is available in isBlank().</p>
  11.  *
  12.  * @param cs  the CharSequence to check, may be null
  13.  * @return {@code true} if the CharSequence is empty or null
  14.  * @since 3.0 Changed signature from isEmpty(String) to isEmpty(CharSequence)
  15.  */
  16. public static boolean isEmpty(final CharSequence cs) {
  17.     return cs == null || cs.length() == 0;
  18. }

StringUtils.isNotEmpty()

相当于不为空 , = !isEmpty()


   
  1. public static boolean isNotEmpty(final CharSequence cs) {
  2.         return !isEmpty(cs);
  3.     }

StringUtils.isAnyEmpty()

是否有一个为空,只有一个为空,就为true。


   
  1. StringUtils.isAnyEmpty(null) = true
  2. StringUtils.isAnyEmpty(null, "foo") = true
  3. StringUtils.isAnyEmpty("""bar") = true
  4. StringUtils.isAnyEmpty("bob""") = true
  5. StringUtils.isAnyEmpty(" bob ", null) = true
  6. StringUtils.isAnyEmpty(" ""bar") = false
  7. StringUtils.isAnyEmpty("foo""bar") = false
  8. /**
  9.  * @param css  the CharSequences to check, may be null or empty
  10.  * @return {@code true} if any of the CharSequences are empty or null
  11.  * @since 3.2
  12.  */
  13. public static boolean isAnyEmpty(final CharSequence... css) {
  14.   if (ArrayUtils.isEmpty(css)) {
  15.     return true;
  16.   }
  17.   for (final CharSequence cs : css){
  18.     if (isEmpty(cs)) {
  19.       return true;
  20.     }
  21.   }
  22.   return false;
  23. }

StringUtils.isNoneEmpty()

相当于!isAnyEmpty(css) , 必须所有的值都不为空才返回true


   
  1. /**
  2.  * <p>Checks if none of the CharSequences are empty ("") or null.</p>
  3.  *
  4.  * <pre>
  5.  * StringUtils.isNoneEmpty(null)             = false
  6.  * StringUtils.isNoneEmpty(null, "foo")      = false
  7.  * StringUtils.isNoneEmpty("", "bar")        = false
  8.  * StringUtils.isNoneEmpty("bob", "")        = false
  9.  * StringUtils.isNoneEmpty("  bob  ", null)  = false
  10.  * StringUtils.isNoneEmpty(" ", "bar")       = true
  11.  * StringUtils.isNoneEmpty("foo", "bar")     = true
  12.  * </pre>
  13.  *
  14.  * @param css  the CharSequences to check, may be null or empty
  15.  * @return {@code true} if none of the CharSequences are empty or null
  16.  * @since 3.2
  17.  */
  18. public static boolean isNoneEmpty(final CharSequence... css) {

isBank系列

StringUtils.isBlank()

是否为真空值(空格或者空值)


   
  1. StringUtils.isBlank(null) = true
  2. StringUtils.isBlank("") = true
  3. StringUtils.isBlank(" ") = true
  4. StringUtils.isBlank("bob") = false
  5. StringUtils.isBlank(" bob ") = false
  6. /**
  7.  * <p>Checks if a CharSequence is whitespace, empty ("") or null.</p>
  8.  * @param cs  the CharSequence to check, may be null
  9.  * @return {@code true} if the CharSequence is null, empty or whitespace
  10.  * @since 2.0
  11.  * @since 3.0 Changed signature from isBlank(String) to isBlank(CharSequence)
  12.  */
  13. public static boolean isBlank(final CharSequence cs) {
  14.     int strLen;
  15.     if (cs == null || (strLen = cs.length()) == 0) {
  16.         return true;
  17.     }
  18.     for (int i = 0; i < strLen; i++) {
  19.         if (Character.isWhitespace(cs.charAt(i)) == false) {
  20.             return false;
  21.         }
  22.     }
  23.     return true;
  24. }

StringUtils.isNotBlank()

是否真的不为空,不是空格或者空值 ,相当于!isBlank();


   
  1. public static boolean isNotBlank(final CharSequence cs) {
  2.         return !isBlank(cs);
  3.     }

StringUtils.isAnyBlank()

是否包含任何真空值(包含空格或空值)


   
  1. StringUtils.isAnyBlank(null) = true
  2. StringUtils.isAnyBlank(null, "foo") = true
  3. StringUtils.isAnyBlank(null, null) = true
  4. StringUtils.isAnyBlank("""bar") = true
  5. StringUtils.isAnyBlank("bob""") = true
  6. StringUtils.isAnyBlank(" bob ", null) = true
  7. StringUtils.isAnyBlank(" ""bar") = true
  8. StringUtils.isAnyBlank("foo""bar") = false
  9.  /**
  10.  * <p>Checks if any one of the CharSequences are blank ("") or null and not whitespace only..</p>
  11.  * @param css  the CharSequences to check, may be null or empty
  12.  * @return {@code true} if any of the CharSequences are blank or null or whitespace only
  13.  * @since 3.2
  14.  */
  15. public static boolean isAnyBlank(final CharSequence... css) {
  16.   if (ArrayUtils.isEmpty(css)) {
  17.     return true;
  18.   }
  19.   for (final CharSequence cs : css){
  20.     if (isBlank(cs)) {
  21.       return true;
  22.     }
  23.   }
  24.   return false;
  25. }

StringUtils.isNoneBlank()

是否全部都不包含空值或空格


   
  1. StringUtils.isNoneBlank(null) = false
  2. StringUtils.isNoneBlank(null, "foo") = false
  3. StringUtils.isNoneBlank(null, null) = false
  4. StringUtils.isNoneBlank("""bar") = false
  5. StringUtils.isNoneBlank("bob""") = false
  6. StringUtils.isNoneBlank(" bob ", null) = false
  7. StringUtils.isNoneBlank(" ""bar") = false
  8. StringUtils.isNoneBlank("foo""bar") = true
  9. /**
  10.  * <p>Checks if none of the CharSequences are blank ("") or null and whitespace only..</p>
  11.  * @param css  the CharSequences to check, may be null or empty
  12.  * @return {@code true} if none of the CharSequences are blank or null or whitespace only
  13.  * @since 3.2
  14.  */
  15. public static boolean isNoneBlank(final CharSequence... css) {
  16.   return !isAnyBlank(css);
  17. }

StringUtils的其他方法

可以参考官方的文档,里面有详细的描述,有些方法还是很好用的。

https://commons.apache.org/proper/commons-lang/apidocs/org/apache/commons/lang3/StringUtils.html

方法名 英文解释 中文解释
IsEmpty/IsBlank checks if a String contains text 检查字符串是否包含文本
Trim/Strip removes leading and trailing whitespace 删除前导和尾随空格
Equals/Compare compares two strings null-safe 比较两个字符串是否为null安全的
startsWith check if a String starts with a prefix null-safe 检查字符串是否以前缀null安全开头
endsWith check if a String ends with a suffix null-safe 检查字符串是否以后缀null安全结尾
IndexOf/LastIndexOf/Contains null-safe index-of checks 包含空安全索引检查
IndexOfAny/LastIndexOfAny/IndexOfAnyBut/LastIndexOfAnyBut index-of any of a set of Strings 任意一组字符串的索引
ContainsOnly/ContainsNone/ContainsAny does String contains only/none/any of these characters 字符串是否仅包含/无/这些字符中的任何一个
Substring/Left/Right/Mid null-safe substring extractions 字符串安全提取
SubstringBefore/SubstringAfter/SubstringBetween substring extraction relative to other strings -相对其他字符串的字符串提取
Split/Join splits a String into an array of substrings and vice versa 将字符串拆分为子字符串数组,反之亦然
Remove/Delete removes part of a String -删除字符串的一部分
Replace/Overlay Searches a String and replaces one String with another 搜索字符串,然后用另一个字符串替换
Chomp/Chop removes the last part of a String 删除字符串的最后一部分
AppendIfMissing appends a suffix to the end of the String if not present 如果不存在后缀,则在字符串的末尾附加一个后缀
PrependIfMissing prepends a prefix to the start of the String if not present 如果不存在前缀,则在字符串的开头添加前缀
LeftPad/RightPad/Center/Repeat pads a String 填充字符串
UpperCase/LowerCase/SwapCase/Capitalize/Uncapitalize changes the case of a String 更改字符串的大小写
CountMatches counts the number of occurrences of one String in another 计算一个字符串在另一个字符串中出现的次数
IsAlpha/IsNumeric/IsWhitespace/IsAsciiPrintable checks the characters in a String 检查字符串中的字符
DefaultString protects against a null input String 防止输入字符串为空
Rotate rotate (circular shift) a String 旋转(循环移位)字符串
Reverse/ReverseDelimited reverses a String -反转字符串
Abbreviate abbreviates a string using ellipsis or another given String 使用省略号或另一个给定的String缩写一个字符串
Difference compares Strings and reports on their differences 比较字符串并报告其差异
LevenshteinDistance the number of changes needed to change one String into another 将一个String转换为另一个String所需的更改次数
 
 

END


   
  1. 看完本文有收获?请转发分享给更多人
  2. 关注「Java编程鸭」,提升Java技能
  3. 关注Java编程鸭微信公众号,后台回复:码农大礼包 可以获取最新整理的技术资料一份。涵盖Java 框架学习、架构师学习等!
  4. 文章有帮助的话,在看,转发吧。
  5. 谢谢支持哟 (*^__^*)

文章来源: mingongge.blog.csdn.net,作者:民工哥,版权归原作者所有,如需转载,请联系作者。

原文链接:mingongge.blog.csdn.net/article/details/126653764

【版权声明】本文为华为云社区用户转载文章,如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@huaweicloud.com
  • 点赞
  • 收藏
  • 关注作者

评论(0

0/1000
抱歉,系统识别当前为高风险访问,暂不支持该操作

全部回复

上滑加载中

设置昵称

在此一键设置昵称,即可参与社区互动!

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。

*长度不超过10个汉字或20个英文字符,设置后3个月内不可修改。