会员
周边
众包
新闻
博问
闪存
赞助商
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
涤新云
博客园
首页
新随笔
联系
管理
订阅
2016年11月22日
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 @ 2016-11-22 11:42 涤新云
阅读(115611)
评论(3)
推荐(13)
编辑
公告