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

字符串工具类(判断是否为空,是否不为空,过滤掉集合中的空格元素)

时间:2017-12-19 19:52:39      阅读:653      评论:0      收藏:0      [点我收藏+]

标签:color   empty   list   body   als   ret   result   public   amp   

import java.util.ArrayList;
import java.util.List;

/**
 * 字符串工具类
 * @author gabodouer
 *
 */
public class StringUtil {

    /**
     * 判断是否是空
     * @param str
     * @return
     */
    public static boolean isEmpty(String str) {
        if (str == null || "".equals(str)) {
            return true;
        } else {
            return false;
        }
    }

    /**
     * 判断是否不是空
     * @param str
     * @return
     */
    public static boolean isNotEmpty(String str) {
        if (str != null && !"".equals(str)) {
            return true;
        } else {
            return false;
        }
    }

    /**
     * 过滤掉集合中的空格元素
     * @param list
     * @return
     */
    public static List<String> filterWhite(List<String> list) {
        List<String> resultList = new ArrayList<String>();
        for (String l : list) {
            if (isNotEmpty(l)) {
                resultList.add(l);
            }
        }
        return resultList;
    }
}

 

字符串工具类(判断是否为空,是否不为空,过滤掉集合中的空格元素)

标签:color   empty   list   body   als   ret   result   public   amp   

原文地址:http://www.cnblogs.com/pai-da-xing/p/8066069.html

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