Java随机密码生成并和邮箱、手机号匹配

网友投稿 270 2023-07-22


Java随机密码生成并和邮箱、手机号匹配

废话不多说了,直接给大家贴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 移动、联通、电信运营商的号码段

*

移动的号段:134(0-8)、135、136、137、138、139、147(预计用于TD上网卡)

*、150、151、152、157(TD专用)、158、159、187(未启用)、188(TD专用)

*

联通的号段:130、131、132、155、156(世界风专用)、185(未启用)、186(3g)

*

电信的号段:133、153、180(未启用)、189

* @return 验证成功返回true,验证失败返回false

*/

public static boolean checkMobile(String mobile) {

String regex = "(\\+\\d+)?1[3458]\\d{9}$";

return Pattern.matches(regex,mobile);

}

/**

* 验证固定电话号码

* @param phone 电话号码,格式:国家(地区)电话代码 + 区号(城市代码) + 电话号码,如:+8602085588447

*

国家(地区) 代码 :标识电话号码的国家(地区)的标准国家(地区)代码。它包含从 0 到 9 的一位或多位数字,

* 数字之后是空格分隔的国家(地区)代码。

*

区号(城市代码):这可能包含一个或多个从 0 到 9 的数字,地区或城市代码放在圆括号——

* 对不使用地区或城市代码的国家(地区),则省略该组件。

*

电话号码:这包含从 0 到 9 的一个或多个数字

* @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://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);

}

/**

*

* 获取网址 URL 的一级域名

* http://zuidaima.com/share/1550463379442688.htm ->> zuidaima.com

*

*

* @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随机密码生成并和邮箱、手机匹配的相关内容,希望对大家有所帮助。


版权声明:本文内容由网络用户投稿,版权归原作者所有,本站不拥有其著作权,亦不承担相应法律责任。如果您发现本站中有涉嫌抄袭或描述失实的内容,请联系我们jiasou666@gmail.com 处理,核实后本网站将在24小时内删除侵权内容。

上一篇:Spring自定义配置Schema可扩展(一)
下一篇:基于Java代码实现判断春节、端午节、中秋节等法定节假日的方法
相关文章

 发表评论

暂时没有评论,来抢沙发吧~