Java中常用工具类封装:StringUtils

从网上找了一些Java中常用工具类封装总结如下:可直接使用

用maven做工程管理,需要引入commons-lang3包,如下:

<dependency>
    <groupId>org.apache.commons</groupId>
    <artifactId>commons-lang3</artifactId>
</dependency>

具体类封装如下:

import java.util.Collection;
import java.util.Map;

import com.sun.org.apache.regexp.internal.RE;
import org.apache.commons.lang.text.StrBuilder;

/**
 * 字符串工具类
 */
public class StringUtils {

    /**空字符串*/
    private static final String NULLSTR = "";

    /**
     * 获取参数不为空
     * @param value
     * @param defaultValue
     * @param <T>
     * @return
     */
    public static <T> T nvl(T value,T defaultValue){
        return value !=null ? value : defaultValue;
    }

    /**
     * 判断一个对象是否为空
     * @param object
     * @return true为空 false为非空
     */
    public static boolean isNull(Object object){
        return object == null;
    }

    /**
     * 判断一个对象为非空
     * @param object
     * @return true:空  false:非空
     */
    public static boolean isNotNUll(Object object){
        return !isNull(object);
    }

    /**
     * 判断一个Collection是否为空,包含List,Set,Queue
     * @param coll
     * @return true:为空,false:非空
     */
    public static boolean isEmpty(Collection<?> coll){
        return isNull(coll) || coll.isEmpty();
    }

    /**
     * 判断一个Collection是否非空
     * @param coll
     * @return true:非空 false:空
     */
    public static boolean isNotEmpty(Collection<?> coll){
        return !isEmpty(coll);
    }

    /**
     * 判断一个对象数组是否为空
     * @param objects
     * @return true:为空,false:非空
     */
    public static boolean isEmpty(Object[] objects){
        return isNull(objects) || objects.length==0;
    }

    /**
     * 判断一个对象数组为非空
     * @param objects
     * @return true:非空 false:空
     */
    public static boolean isNotEmpty(Object[] objects){
        return !isEmpty(objects);
    }

    /**
     * 判断一个Map 是否为空
     * @param map
     * @return rue:为空,false:非空
     */
    public static boolean isEmpty(Map<?,?> map){
        return isNull(map) || map.isEmpty();
    }

    /**
     * 判断一个Map是否非空
     * @param map
     * @return true:非空 false:空
     */
    public static boolean isNotEmpty(Map<?,?> map){
        return !isEmpty(map);
    }

    /**
     * 判断一个字符串是否为空
     * @param str
     * @return true:非空 false:空
     */
    public static boolean isEmpty(String str){
        return isNull(str) || NULLSTR.equals(str.trim());
    }

    /**
     * 判断一个字符串为非空
     * @param str
     * @return true:非空 false:空
     */
    public static boolean isNotEmpty(String str){
        return !isEmpty(str);
    }

    /**
     * 判断一个对象是否是数组类型
     * @param object
     * @return true:是数组 false:不是数组
     */
    public static boolean isArray(Object object){
        return isNotNUll(object) && object.getClass().isArray();
    }

    /**
     * 去字符串头尾空格
     * @param str
     * @return
     */
    public static String trim(String str){
        return str == null ? "" : str.trim();
    }

    /**
     * 截取字符串
     * @param str
     * @param start
     * @param end
     * @return
     */
    public static String substring(final String str,int start,int end){
        if (str == null){
            return NULLSTR;
        }
        if (end < 0){
            end = str.length() + end;
        }
        if (start < 0 ){
            start = str.length() + start;
        }
        if (end > str.length()){
            end = str.length();
        }
        if (start > end){
            return NULLSTR;
        }
        if (start < 0){
            start = 0;
        }
        if (end < 0){
            end = 0;
        }
        return str.substring(start,end);
    }

    /**
     * 字符串首字母小写
     * @param str
     * @return
     */
    public static String uncapitalize(String str){
        int strLen;
        if (str == null || (strLen = str.length()) == 0){
            return str;
        }
        return new StrBuilder(strLen).append(Character.toLowerCase(str.charAt(0))).append(str.substring(1)).toString();
    }

    /**
     * 判断是否包含字符串
     * @param str
     * @param strs
     * @return
     */
    public static boolean inStringIgnoreCase(String str,String... strs){
        if (str != null && strs != null){
            for(String s : strs){
                if (str.equalsIgnoreCase(trim(s))){
                    return true;
                }
            }
        }
        return false;
    }

    /**
     * 将带下划线的字符串转换为驼峰形式 如 hello_world -> HelloWorld,HELLO_WORLD -> HelloWorld
     * @param name
     * @return
     */
    public static String convertToCamelCase(String name){
        StringBuilder result = new StringBuilder();
        //如果字符串为空,没必要转换
        if (name == null || isEmpty(name)){
            return "";
            //如果字符串不包含下划线,仅首字母大写
        }else if (!name.contains("_")){
            return name.substring(0,1).toUpperCase() + name.substring(1).toLowerCase();
        }

        //使用“_”分割字符串
        String[] camels = name.split("_");
        for (String camel : camels){
            //跳过字符串开头中间结尾的下划线,以及双下划线
            if (camel.isEmpty()){
                continue;
            }
            //首字母大写
            result.append(camel.substring(0,1).toUpperCase());
            result.append(camel.substring(1).toLowerCase());
        }
        return result.toString();
    }

    /**
     * 字符串数据处理
     * @param value
     * @return
     */
    public static String valueAsStr(Object value){
        if (value instanceof String){
            return (String) value;
        }
        if (value != null){
            return value.toString();
        }else {
            return null;
        }
    }

    /**
     * 整型数据处理
     */
    public static Integer valueAsInt(Object value){
        if (value instanceof Integer){
            return (Integer) value;
        }else if (value instanceof Number){
            return ((Number)value).intValue();
        }else if (value instanceof String){
            if ("NaN".equals(value)){
                return null;
            }
            return Integer.valueOf((String) value);
        }else if (value instanceof Boolean){
            return ((Boolean)value) ? 1 : 0;
        }
        else {
            return null;
        }
    }

}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值