• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

java字符串工具类StringUtils

java实例 海叔叔 4年前 (2021-09-26) 41次浏览 已收录 0个评论

本文由搞代码网为大家展示了java字符串工具类StringUtils》的代码案例,请各位coder不吝赐教,也欢迎coder点赞收藏转发,感谢

public class StringUtils extends org.apache.commons.lang3.StringUtils {
 
    /**
     * <p>Description:[判断字符串是否不为NULL或者‘’]</p>
     * Created on 2017年8月3日
     *
     * @param value 字符串
     * @return Boolean 判断结果
     * @author:[刘超]
     */
    public static Boolean isNotEmpty(String value) {
        if (value == null || value.length() == 0) {
            return false;
        }
        return true;
    }
 
    /**
     * <p>Description:[判断字符串是否为NULL或者‘’]</p>
     * Created on 2017年8月3日
     *
     * @param value 字符串
     * @return Boolean 判断结果
     * @author:[刘超]
     */
    public static Boolean isEmpty(String value) {
        if (value == null || value.length() == 0) {
            return true;
        }
        return false;
    }
 
    /**
     * <p>Description:[是否是空]</p>
     * Created on 2017年8月9日
     *
     * @param obj 任意类型
     * @return Boolean 判断结果
     * @author:[刘超]
     */
    public static Boolean isEmpty(Object obj) {
        if (null == obj) {
            return true;
        }
        return false;
    }
 
 
    /**
     * <p>Description:[判断redis的中某值是否为空]</p>
     * Created on 2017年9月19日
     *
     * @param string 字符串类型
     * @return 空返回true
     * @author:[李伟]
     */
    public static Boolean isRedisEmpty(String string) {
        if (StringUtils.isEmpty(string) || "null".equals(string) || "".equals(string)) {
            return true;
        }
        return false;
    }
 
    /**
     * <p>Description: [替换null为空字符] </p>
     * Created on: 2017/11/9 19:56
     *
     * @param str 为null的字符串
     * @author [李瑞丰]
     */
    public static String replaceNullToEmpty(String str) {
        if (str == null) {
            str = "";
        }
        return str;
    }
 
    /**
     * <p>Description:[根据字符串获取Integer值,空字符串返回null]</p>
     * Created on 2017年11月15日
     *
     * @param str 字符串
     * @return Integer Integer值
     * @author 缪志红
     */
    public static Integer getIntValue(String str) {
        if (org.apache.commons.lang3.StringUtils.isBlank(str)) {
            return null;
        }
        if (!isNumeric(str)) {
            return null;
        }
        return Integer.parseInt(str);
    }
 
    /**
     * <p>Description:[根据字符串获取Double值,空字符串返回null]</p>
     * Created on 2017年11月20日
     *
     * @param str 字符串
     * @return Double Double值
     * @author 缪志红
     */
    public static Double getDoubleValue(String str) {
        if (org.apache.commons.lang3.StringUtils.isBlank(str)) {
            return null;
        }
        if (!isNumber(str)) {
            return null;
        }
        return Double.parseDouble(str);
    }
 
    /**
     * <p>Description:[根据字符串获取BigDecimal值,空字符串返回null]</p>
     * Created on 2017年11月20日
     *
     * @param str 字符串
     * @return BigDecimal BigDecimal值
     * @author 缪志红
     */
    public static BigDecimal getBigDecimalValue(String str) {
        if (org.apache.commons.lang3.StringUtils.isBlank(str)) {
            return null;
        }
        if (!isNumber(str)) {
            return null;
        }
        return new BigDecimal(str);
    }
 
    /**
     * <p>Description:[判断字符串是否为整数]</p>
     * Created on 2017年11月15日
     *
     * @param str 字符串
     * @return boolean 是否是整数
     * @author 缪志红
     */
    public static boolean isNumeric(String str) {
        for (int i = 0; i < str.length(); i++) {
            if (!Character.isDigit(str.charAt(i))) {
                return false;
            }
        }
        return true;
    }
 
    /**
     * <p>Description:[判断字符串是否为数字类型]</p>
     * Created on 2017年11月20日
     *
     * @param str 字符串
     * @return boolean 是否是数字类型
     * @author 缪志红
     */
    public static boolean isNumber(String str) {
        String reg = "^[0-9]+(.[0-9]+)?$";
        return str.matches(reg);
    }
 
    /**
     * <p>Description:[字符串数组转int数组]</p>
     * Created on 2017年11月21日
     *
     * @param strings 字符串数组
     * @return int[] int类型数组
     * @author 缪志红
     */
    public static int[] StringArrayToIntArray(String[] strings) {
        try {
            if (null == strings || strings.length == 0) {
                return null;
            }
            int[] ints = new int[strings.length];
            if (ints.length > 0) {
                for (int i = 0; i < strings.length; i++) {
                    if (isBlank(strings[i])) {
                        ints[i] = 0;
                    } else {
                        ints[i] = Integer.parseInt(strings[i]);
                    }
                }
            }
            return ints;
        } catch (Exception e) {
            e.printStackTrace();
            return null;
        }
    }
 
    /**
     * <p>Description:[字符串数组转Long数组]</p>
     * Created on 2017年12月26日
     *
     * @param strings 字符串数组
     * @return int[] int类型数组
     * @author 缪志红
     */
    public static Long[] StringArrayToLongArray(String[] strings) {
        if (null == strings || strings.length == 0) {
            return null;
        }
        Long[] longs = new Long[strings.length];
        if (null != longs && longs.length > 0) {
            for (int i = 0; i < strings.length; i++) {
                longs[i] = Long.parseLong(strings[i]);
            }
        }
        return longs;
    }
 
    /**
     * <p>Description:[字符类型list转Integer类型List]</p>
     * Created on 2017年11月21日
     *
     * @param stringList 字符串数组
     * @return List<Integer> Integer类型List
     * @author 缪志红
     */
    public static List<Integer> StringListToIntegerList(List<String> stringList) {
        if (null == stringList || stringList.size() == 0) {
            return null;
        }
        List<Integer> integerList = new ArrayList<>();
        for (String string : stringList) {
            integerList.add(getIntValue(string));
        }
        return integerList;
    }
 
    /**
     * <p>Description:[字符类型list转Long类型List]</p>
     * Created on 2017年12月08日
     *
     * @param stringList 字符串数组
     * @return List<Long> Long类型List
     * @author 缪志红
     */
    public static List<Long> stringListToLongList(List<String> stringList) {
        if (null == stringList || stringList.size() == 0) {
            return null;
        }
        List<Long> longList = new ArrayList<>();
        for (String string : stringList) {
            if(isEmpty(string)||string.equals("null")){
                continue;
            }
            longList.add(Long.parseLong(string));
        }
        return longList;
    }
 
    /**
     * <p>Description:[字符串转小写字符串]</p>
     * Created on 2018/1/4
     *
     * @param origString 原始字符串
     * @return 转换后的字符串
     * @author 缪志红
     */
    public static String getLowerString(String origString) {
        if (StringUtils.isBlank(origString)) {
            return origString;
        }
        return origString.toLowerCase();
    }
 
    /**
     * <p>Description:[字符串转小写字符串]</p>
     * Created on 2018/1/4
     *
     * @param origString 原始字符串
     * @return 转换后的字符串
     * @author 缪志红
     */
    public static String getUpperString(String origString) {
        if (StringUtils.isBlank(origString)) {
            return origString;
        }
        return origString.toUpperCase();
    }
 
    /**
     * <p>Description:[判断字符串是否只包含数字和字母]</p>
     * Created on 2018/3/7
     *
     * @author 缪志红
     */
    public static boolean containLetterAndNumber(String string) {
        return string.matches("[0-9A-Za-z]*");
    }
 
    /**
     * <p>Description:[判断字符串是否只包含数字和横杠(电话号校验)]</p>
     * Created on 2018/3/7
     *
     * @author 缪志红
     */
    public static boolean isPhone(String string) {
        return string.matches("[0-9-]*");
    }
 
    /**
     * <p>Description:[过滤表情符号]</p>
     * Created on 2018/3/15
     *
     * @author 缪志红
     */
    public static String filterEmoji(String string) {
        if(StringUtils.isEmpty(string)){
            return null;
        }
        //Pattern emoji = Pattern.compile ("[\ud83c\udc00-\ud83c\udfff]|[\ud83d\udc00-\ud83d\udfff]|[\u2600-\u27ff]",Pattern.UNICODE_CASE | Pattern.CASE_INSENSITIVE);
        Pattern emoji = Pattern.compile ("(?:[\uD83C\uDF00-\uD83D\uDDFF]|[\uD83E\uDD00-\uD83E\uDDFF]|[\uD83D\uDE00-\uD83D\uDE4F]|[\uD83D\uDE80-\uD83D\uDEFF]|[\u2600-\u26FF]\uFE0F?|[\u2700-\u27BF]\uFE0F?|\u24C2\uFE0F?|[\uD83C\uDDE6-\uD83C\uDDFF]{1,2}|[\uD83C\uDD70\uD83C\uDD71\uD83C\uDD7E\uD83C\uDD7F\uD83C\uDD8E\uD83C\uDD91-\uD83C\uDD9A]\uFE0F?|[\u0023\u002A\u0030-\u0039]\uFE0F?\u20E3|[\u2194-\u2199\u21A9-\u21AA]\uFE0F?|[\u2B05-\u2B07\u2B1B\u2B1C\u2B50\u2B55]\uFE0F?|[\u2934\u2935]\uFE0F?|[\u3030\u303D]\uFE0F?|[\u3297\u3299]\uFE0F?|[\uD83C\uDE01\uD83C\uDE02\uD83C\uDE1A\uD83C\uDE2F\uD83C\uDE32-\uD83C\uDE3A\uD83C\uDE50\uD83C\uDE51]\uFE0F?|[\u203C\u2049]\uFE0F?|[\u25AA\u25AB\u25B6\u25C0\u25FB-\u25FE]\uFE0F?|[\u00A9\u00AE]\uFE0F?|[\u2122\u2139]\uFE0F?|\uD83C\uDC04\uFE0F?|\uD83C\uDCCF\uFE0F?|[\u231A\u231B\u2328\u23CF\u23E9-\u23F3\u23F8-\u23FA]\uFE0F?)",Pattern.UNICODE_CASE | Pattern . CASE_INSENSITIVE ) ;
        Matcher emojiMatcher = emoji.matcher(string);
        if (emojiMatcher.find()) {
            string = emojiMatcher.replaceAll("");
        }
        return string;
    }
     
    /**
     * <p>Description:[获取URL文件名称KEY]</p>
     * Created on 2018年5月4日
     * @param imgUrl
     * @return
     * @author:[刘香平]
     */
    public static String getFileUrlName(String imgUrl) {
        if (imgUrl == null) {
            return null;
        }
        String[] strs = imgUrl.split("/");
        if(strs == null || strs.length == 0){
            return null;
        }
        String temp = strs[strs.length - 1];
        if(StringUtils.isBlank(temp)){
            return null;
        }
        if (temp.lastIndexOf(".") < 0) {
            return null;
        }
        temp = temp.substring(0, temp.lastIndexOf("."));
        return temp;
    }
 
    /**
     * <p>Description:[获取uuid]</p>
     * Created on 2018/9/4
     *
     * @author 缪志红
     */
    public static String getUUID() {
        return UUID.randomUUID().toString().replaceAll("-", "");
    }
 
}


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:java字符串工具类StringUtils
喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址