首页 > 代码库 > String类型判空、
String类型判空、
针对前后含有空格、有空格的、空字符串、以及null字符的判断
public static void main(String[] args) { String s1 = ""; String s2 = null; String s3 = " "; String s4 = "hello"; String s5 = " hello "; System.out.println("1:" + isEmpty(s1)); System.out.println("2:" + isEmpty(s2)); System.out.println("3:" + isEmpty(s3)); System.out.println("4:" + isEmpty(s4)); System.out.println("5:" + isEmpty(s5)); } public static boolean isEmpty(String str) { str = StringUtils.trimToNull(str); System.out.print("#" + str+"-------"); return StringUtils.isNotEmpty(str) && StringUtils.isNotBlank(str); }
输出结果:
#null-------1:false#null-------2:false#null-------3:false#hello-------4:true#hello-------5:true
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。