產生隨機密碼和郵箱、手機匹配

來源:互聯網
上載者:User

標籤:隨機密碼 郵箱 手機正則匹配

package com.alibaba.uyuni.common.util;import java.util.Random;public class GeneratePassword {    /**     * 產生隨機密碼     * @param pwd_len     * 產生的密碼的總長度     * @return 密碼的字串     */    public static String genRandomNum(int pwd_len) {        // 26*2個字母+10個數字        final int maxNum = 62;        int i; // 產生的隨機數        int count = 0; // 產生的密碼的長度        char[] str = { ‘A‘, ‘B‘, ‘C‘, ‘D‘, ‘E‘, ‘F‘, ‘G‘, ‘H‘, ‘I‘, ‘J‘, ‘K‘,                ‘L‘, ‘M‘, ‘N‘, ‘O‘, ‘P‘, ‘Q‘, ‘R‘, ‘S‘, ‘T‘, ‘U‘, ‘V‘, ‘W‘,                ‘X‘, ‘Y‘, ‘Z‘, ‘a‘, ‘b‘, ‘c‘, ‘d‘, ‘e‘, ‘f‘, ‘g‘, ‘h‘, ‘i‘, ‘j‘, ‘k‘,                ‘l‘, ‘m‘, ‘n‘, ‘o‘, ‘p‘, ‘q‘, ‘r‘, ‘s‘, ‘t‘, ‘u‘, ‘v‘, ‘w‘,                ‘x‘, ‘y‘, ‘z‘,‘0‘, ‘1‘, ‘2‘, ‘3‘, ‘4‘, ‘5‘, ‘6‘, ‘7‘, ‘8‘, ‘9‘ };        StringBuffer pwd = new StringBuffer("");        Random r = new Random();        while (count < pwd_len) {            // 產生隨機數,取絕對值,防止產生負數,            i = Math.abs(r.nextInt(maxNum)); // 產生的數最大為62-1            if (i >= 0 && i < str.length) {                pwd.append(str[i]);                count++;            }        }        return pwd.toString();    }    public static void main(String[] args) {        System.out.println(genRandomNum(6));//     }}




package com.alibaba.uyuni.common.util;import java.util.regex.Matcher;import java.util.regex.Pattern;public class RegexUtils {     /**     * 驗證Email     * @param email email地址,格式:[email protected],[email protected],xxx代表郵件服務商     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkEmail(String email) {         String regex = "\\[email protected]\\w+\\.[a-z]+(\\.[a-z]+)?";         return Pattern.matches(regex, email);     }          /**     * 驗證***號碼     * @param idCard 居民***號碼15位或18位,最後一位可能是數字或字母     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkIdCard(String idCard) {         String regex = "[1-9]\\d{13,16}[a-zA-Z0-9]{1}";         return Pattern.matches(regex,idCard);     }          /**     * 驗證手機號碼(支援國際格式,+86135xxxx...(中國內地),+00852137xxxx...(中國香港))     * @param mobile 移動、聯通、電信電訊廠商的號碼段     *<p>移動的號段:134(0-8)、135、136、137、138、139、147(預計用於TD上網卡)     *、150、151、152、157(TD專用)、158、159、187(未啟用)、188(TD專用)</p>     *<p>聯通的號段:130、131、132、155、156(世界風專用)、185(未啟用)、186(3g)</p>     *<p>電信的號段:133、153、180(未啟用)、189</p>     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkMobile(String mobile) {         String regex = "(\\+\\d+)?1[3458]\\d{9}$";         return Pattern.matches(regex,mobile);     }          /**     * 驗證固定電話號碼     * @param phone 電話號碼,格式:國家(地區)電話代碼 + 區號(城市代碼) + 電話號碼,如:+8602085588447     * <p><b>國家(地區) 代碼 :</b>標識電話號碼的國家(地區)的標準國碼 (地區碼)。它包含從 0 到 9 的一位或多位元字,     *  數字之後是空格分隔的國碼 (地區碼)。</p>     * <p><b>區號(城市代碼):</b>這可能包含一個或多個從 0 到 9 的數字,地區或城市代碼放在圓括弧——     * 對不使用地區或城市代碼的國家(地區),則省略該組件。</p>     * <p><b>電話號碼:</b>這包含從 0 到 9 的一個或多個數字 </p>     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkPhone(String phone) {         String regex = "(\\+\\d+)?(\\d{3,4}\\-?)?\\d{7,8}$";         return Pattern.matches(regex, phone);     }          /**     * 驗證整數(正整數和負整數)     * @param digit 一位或多位0-9之間的整數     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkDigit(String digit) {         String regex = "\\-?[1-9]\\d+";         return Pattern.matches(regex,digit);     }          /**     * 驗證整數和浮點數(正負整數和正負浮點數)     * @param decimals 一位或多位0-9之間的浮點數,如:1.23,233.30     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkDecimals(String decimals) {         String regex = "\\-?[1-9]\\d+(\\.\\d+)?";         return Pattern.matches(regex,decimals);     }           /**     * 驗證空白字元     * @param blankSpace 空白字元,包括:空格、\t、\n、\r、\f、\x0B     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkBlankSpace(String blankSpace) {         String regex = "\\s+";         return Pattern.matches(regex,blankSpace);     }          /**     * 驗證中文     * @param chinese 中文字元     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkChinese(String chinese) {         String regex = "^[\u4E00-\u9FA5]+$";         return Pattern.matches(regex,chinese);     }          /**     * 驗證日期(年月日)     * @param birthday 日期,格式:1992-09-03,或1992.09.03     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkBirthday(String birthday) {         String regex = "[1-9]{4}([-./])\\d{1,2}\\1\\d{1,2}";         return Pattern.matches(regex,birthday);     }          /**     * 驗證URL地址     * @param url 格式:http://blog.csdn.net:80/xyang81/article/details/7705960? 或 http://www.csdn.net:80     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkURL(String url) {         String regex = "(https?://(w{3}\\.)?)?\\w+\\.\\w+(\\.[a-zA-Z]+)*(:\\d{1,5})?(/\\w*)*(\\??(.+=.*)?(&.+=.*)?)?";         return Pattern.matches(regex, url);     }         /**     * <pre>     * 擷取網址 URL 的頂層網域     * http://www.zuidaima.com/share/1550463379442688.htm ->> zuidaima.com     * </pre>     *      * @param url     * @return     */    public static String getDomain(String url) {        Pattern p = Pattern.compile("(?<=http://|\\.)[^.]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);        // 擷取完整的網域名稱        // Pattern p=Pattern.compile("[^//]*?\\.(com|cn|net|org|biz|info|cc|tv)", Pattern.CASE_INSENSITIVE);        Matcher matcher = p.matcher(url);        matcher.find();        return matcher.group();    }    /**     * 匹配中國郵遞區號     * @param postcode 郵遞區號     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkPostcode(String postcode) {         String regex = "[1-9]\\d{5}";         return Pattern.matches(regex, postcode);     }          /**     * 匹配IP地址(簡單匹配,格式,如:192.168.1.1,127.0.0.1,沒有匹配IP段的大小)     * @param ipAddress IPv4標準地址     * @return 驗證成功返回true,驗證失敗返回false     */     public static boolean checkIpAddress(String ipAddress) {         String regex = "[1-9](\\d{1,2})?\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))\\.(0|([1-9](\\d{1,2})?))";         return Pattern.matches(regex, ipAddress);     }      }



本文出自 “點滴積累” 部落格,請務必保留此出處http://tianxingzhe.blog.51cto.com/3390077/1737792

產生隨機密碼和郵箱、手機匹配

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.