首页 > 其他 > 详细

String类型判空、

时间:2014-08-05 13:20:09      阅读:399      评论:0      收藏:0      [点我收藏+]

针对前后含有空格、有空格的、空字符串、以及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

  

String类型判空、,布布扣,bubuko.com

String类型判空、

原文:http://www.cnblogs.com/lucky2u/p/3891740.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!