码迷,mamicode.com
首页 > 其他好文 > 详细

String类型判空、

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

标签:blog   java   ar   div   amp   log   c   字符串   

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

标签:blog   java   ar   div   amp   log   c   字符串   

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

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!