StringUtils中isNotEmpty和isNotBlank的区别【java字符串判空】
1 isNotEmpty(str)等价于 str != null && str.length > 0
2 isNotBlank(str) 等价于 str != null && str.length > 0 && im().length > 0
3同理
4 isEmpty 等价于 str == null || str.length == 0
5 isBlank 等价于 str == null || str.length == 0 || im().length == 0
6
7 str.length > 0 && im().length > 0 ---> str.length > 0
1 StringUtils⽅法的操作对象是java.lang.String类型的对象,是JDK提供的String类型操作⽅法的补充,并且是null安全的(即如果输⼊参数String为null则不会抛出NullPointerException,⽽是做了相应处理,例如,如果输⼊为null则返回也是null等,具 2
3
4除了构造器,StringUtils中⼀共有130多个⽅法,并且都是static的,所以我们可以这样调⽤()
5
6
7 1. public static boolean isEmpty(String str)
8判断某字符串是否为空,为空的标准是str==null或str.length()==0
9下⾯是StringUtils判断是否为空的⽰例:
10 StringUtils.isEmpty(null) = true
11 StringUtils.isEmpty("") = true
12 StringUtils.isEmpty(" ") = false//注意在StringUtils中空格作⾮空处理
13 StringUtils.isEmpty(" ") = false
14 StringUtils.isEmpty("bob") = false
15 StringUtils.isEmpty(" bob ") = false
16
17
18 2. public static boolean isNotEmpty(String str)
19判断某字符串是否⾮空,等于!isEmpty(String str)
20下⾯是⽰例:
21 StringUtils.isNotEmpty(null) = false
22 StringUtils.isNotEmpty("") = false
23 StringUtils.isNotEmpty(" ") = true
24 StringUtils.isNotEmpty(" ") = true
25 StringUtils.isNotEmpty("bob") = true
26 StringUtils.isNotEmpty(" bob ") = true
27
28
29 3. public static boolean isBlank(String str)
30判断某字符串是否为空或长度为0或由空⽩符(whitespace)构成
31下⾯是⽰例:
32 StringUtils.isBlank(null) = true
33 StringUtils.isBlank("") = true
34 StringUtils.isBlank(" ") = true
35 StringUtils.isBlank(" ") = true
36 StringUtils.isBlank("\t \n \f \r") = true//对于制表符、换⾏符、换页符和回车符StringUtils.isBlank()均识为空⽩符
37 StringUtils.isBlank("\b") = false//"\b"为单词边界符
38 StringUtils.isBlank("bob") = false
39 StringUtils.isBlank(" bob ") = false
40
41
42 4. public static boolean isNotBlank(String str)
43判断某字符串是否不为空且长度不为0且不由空⽩符(whitespace)构成,等于!isBlank(String str)
44下⾯是⽰例:
45 StringUtils.isNotBlank(null) = false
46 StringUtils.isNotBlank("") = false
47 StringUtils.isNotBlank(" ") = false
48 StringUtils.isNotBlank(" ") = false
49 StringUtils.isNotBlank("\t \n \f \r") = false
50 StringUtils.isNotBlank("\b") = true
51 StringUtils.isNotBlank("bob") = true
52 StringUtils.isNotBlank(" bob ") = true
53
空字符串是什么54
55其他⽅法介绍:
56 5. public static String trim(String str)
57去掉字符串两端的控制符(control characters, char <= 32),如果输⼊为null则返回null
58下⾯是⽰例:
im(null) = null
im("") = ""
im(" ") = ""
im(" \b \t \n \f \r ") = ""
im(" \n\tss \b") = "ss"
im(" d d dd ") = "d d dd"
im("dd ") = "dd"
im(" dd ") = "dd"
67
68
69 6. public static String trimToNull(String str)
70去掉字符串两端的控制符(control characters, char <= 32),如果变为null或"",则返回null
71下⾯是⽰例:
imToNull(null) = null
imToNull("") = null
imToNull(" ") = null
imToNull(" \b \t \n \f \r ") = null
imToNull(" \n\tss \b") = "ss"
imToNull(" d d dd ") = "d d dd"
imToNull("dd ") = "dd"
imToNull(" dd ") = "dd"
80
81
82 7. public static String trimToEmpty(String str)
83去掉字符串两端的控制符(control characters, char <= 32),如果变为null或"",则返回""
84下⾯是⽰例:
imToEmpty(null) = ""
imToEmpty("") = ""
imToEmpty(" ") = ""
imToEmpty(" \b \t \n \f \r ") = ""
imToEmpty(" \n\tss \b") = "ss"
imToEmpty(" d d dd ") = "d d dd"
imToEmpty("dd ") = "dd"
imToEmpty(" dd ") = "dd"
93
94
95 8. public static String strip(String str)
96去掉字符串两端的空⽩符(whitespace),如果输⼊为null则返回null
97下⾯是⽰例(注意和trim()的区别):
98 StringUtils.strip(null) = null
99 StringUtils.strip("") = ""
100 StringUtils.strip(" ") = ""
101 StringUtils.strip(" \b \t \n \f \r ") = "\b"
102 StringUtils.strip(" \n\tss \b") = "ss \b"
103 StringUtils.strip(" d d dd ") = "d d dd"
104 StringUtils.strip("dd ") = "dd"
105 StringUtils.strip(" dd ") = "dd"
106
107
108 9. public static String stripToNull(String str)
109去掉字符串两端的空⽩符(whitespace),如果变为null或"",则返回null 110下⾯是⽰例(注意和trimToNull()的区别):
111 StringUtils.stripToNull(null) = null
112 StringUtils.stripToNull("") = null
113 StringUtils.stripToNull(" ") = null
114 StringUtils.stripToNull(" \b \t \n \f \r ") = "\b"
115 StringUtils.stripToNull(" \n\tss \b") = "ss \b"
116 StringUtils.stripToNull(" d d dd ") = "d d dd"
117 StringUtils.stripToNull("dd ") = "dd"
118 StringUtils.stripToNull(" dd ") = "dd"
119
120
121 10. public static String stripToEmpty(String str)
122去掉字符串两端的空⽩符(whitespace),如果变为null或"",则返回"" 123下⾯是⽰例(注意和trimToEmpty()的区别):
124 StringUtils.stripToNull(null) = ""
125 StringUtils.stripToNull("") = ""
126 StringUtils.stripToNull(" ") = ""
127 StringUtils.stripToNull(" \b \t \n \f \r ") = "\b"
128 StringUtils.stripToNull(" \n\tss \b") = "ss \b"
129 StringUtils.stripToNull(" d d dd ") = "d d dd"
130 StringUtils.stripToNull("dd ") = "dd"
131 StringUtils.stripToNull(" dd ") = "dd"
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。
发表评论