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

sell- 获取邮箱的后缀

时间:2016-11-30 14:22:03      阅读:193      评论:0      收藏:0      [点我收藏+]

标签:final   email   封装   ati   stat   out   har   als   default   

1.

 public static void main(String[] args) {
        System.out.println(getEmailSuffix("jim_chen28270@163.com")); // 163.com
        System.out.println(getEmailSuffix("@qq.com")); //qq.com
    }

    private static String getEmailSuffix(String email) {
        email = defaultIfBlank(email,"").trim();
        if (!email.isEmpty()) {
            int index = email.indexOf(‘@‘) + 1;
            if (index < email.length()) {
                return email.substring(index).toLowerCase();
            }
        }
        return "";
    }

    public static <T extends CharSequence> T defaultIfBlank(final T str, final T defaultStr) {
        return isBlank(str) ? defaultStr : str;
    }

    public static boolean isBlank(final CharSequence cs) {
        int strLen;
        if (cs == null || (strLen = cs.length()) == 0) {
            return true;
        }
        for (int i = 0; i < strLen; i++) {
            if (!Character.isWhitespace(cs.charAt(i))) {
                return false;
            }
        }
        return true;
    }
}

 2. 优化,封装到一个公用的字符串操作类中去

 public static String getEmailSuffix(String email) {
        email = MyStringUtils.defaultIfBlank(email,"").trim();
        if (!email.isEmpty()) {
            int index = email.indexOf(‘@‘) + 1;
            if (index < email.length()) {
                return email.substring(index).toLowerCase();
            }
        }
        return "";
    }

//自己封装的字符串操作类
class MyStringUtils {
    public static <T extends CharSequence> T defaultIfBlank(final T str, final T defaultStr) {
        return isBlank(str) ? defaultStr : str;
    }

    public static boolean isBlank(final CharSequence cs) {
        int strLen;
        if (cs == null || (strLen = cs.length()) == 0) {
            return true;
        }
        for (int i = 0; i < strLen; i++) {
            if (!Character.isWhitespace(cs.charAt(i))) {
                return false;
            }
        }
        return true;
    }

    public static boolean isNotBlank(final CharSequence cs) {
        return !isBlank(cs);
    }

    public static String defaultString(Object obj) {
        return obj == null ? "" : obj.toString();
    }
}

 

sell- 获取邮箱的后缀

标签:final   email   封装   ati   stat   out   har   als   default   

原文地址:http://www.cnblogs.com/bravolove/p/6116934.html

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