Java随机密码生成并和邮箱、手机号匹配
程序员文章站
2024-03-08 14:07:28
废话不多说了,直接给大家贴java代码了,代码有所注释,写的不好,还请各位大家多多关照。
代码如下所示:
package com.alibaba.uyuni.c...
废话不多说了,直接给大家贴java代码了,代码有所注释,写的不好,还请各位大家多多关照。
代码如下所示:
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地址,格式:zhangsan@zuidaima.com,zhangsan@xxx.com.cn,xxx代表邮件服务商 * @return 验证成功返回true,验证失败返回false */ public static boolean checkemail(string email) { string regex = "\\w+@\\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); } }
以上所述是小编给大家分享的java随机密码生成并和邮箱、手机匹配的相关内容,希望对大家有所帮助。
推荐阅读