会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
暮雨晨光
博客园
首页
博问
闪存
新随笔
订阅
管理
2018年7月19日
StringUtils中 isNotEmpty 和isNotBlank的区别【java字符串判空】
摘要: 1 isNotEmpty(str)等价于 str != null && str.length > 0 2 isNotBlank(str) 等价于 str != null && str.length > 0 && str.trim().length > 0 3 同理 4 isEmpty 等价于 str == null || str.length == 0 5 isBlank 等价于 str ...
阅读全文
posted @ 2018-07-19 14:48 暮雨晨光
阅读(188)
评论(0)
推荐(0)
编辑