java常用工具類 Random隨機數(shù)、MD5加密工具類
本文實例為大家分享了java常用工具類的具體代碼,供大家參考,具體內(nèi)容如下
Random隨機數(shù)工具類
package com.jarvis.base.util; import java.util.Random; /** * * * @Title: RandomHelper.java * @Package com.jarvis.base.util * @Description: 隨機數(shù)工具類 * @version V1.0 */ public class RandomHelper { /** * RANDOM 基數(shù) */ private final static int RANDOM_BASE = 10; /** * 產(chǎn)生指定長度的數(shù)字值隨機數(shù) * * @param length * 需要產(chǎn)生的長度 * @return */ public static String getRandomStr(int length) { Random random = new Random(); String randStr = ""; for (int i = 0; i < length; i++) { String randItem = String.valueOf(random.nextInt(RANDOM_BASE)); randStr += randItem; } return randStr; } /** * 描述:手機驗證碼生成帶字符,包含數(shù)字和字符 作者: 時間:Oct 29, 2008 3:40:07 PM * * @param len * 生成手機驗證碼長度 * @return */ public static String generateChatAndNumberIdentifyCode(int len) { char[] identifyStr = { '0', '1', '2', '3', '4', '5', '6', '7', '8', '9', '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' }; // char[] identifyStr={'0','1','2','3','4','5','6','7','8','9'}; // 生成隨機類 // Random random = new Random(); int min = 0; int maxnum = identifyStr.length; String codeStr = ""; for (int i = 0; i < len; i++) { int num = (int) ((maxnum - min) * Math.random() + min); codeStr += identifyStr[num]; } return codeStr; } /** * 描述:手機驗證碼生成帶字符不包含數(shù)字 * * @param len * 生成手機驗證碼長度 * @return */ public static String generateIdentifyCode(int len) { char[] identifyStr = { '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' }; // char[] identifyStr={'0','1','2','3','4','5','6','7','8','9'}; // 生成隨機類 // Random random = new Random(); int min = 0; int maxnum = identifyStr.length; String codeStr = ""; for (int i = 0; i < len; i++) { int num = (int) ((maxnum - min) * Math.random() + min); codeStr += identifyStr[num]; } return codeStr; } }
MD5加密 生成32位md5碼
package com.jarvis.base.util; import java.security.MessageDigest; public class MD5Util { /** * Title: MD5加密 生成32位md5碼 * Description: TestDemo * @param inStr * @return 返回32位md5碼 * @throws Exception */ public static String md5Encode(String inStr) throws Exception { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); } catch (Exception e) { System.out.println(e.toString()); e.printStackTrace(); return ""; } byte[] byteArray = inStr.getBytes("UTF-8"); byte[] md5Bytes = md5.digest(byteArray); StringBuffer hexValue = new StringBuffer(); for (int i = 0; i < md5Bytes.length; i++) { int val = ((int) md5Bytes[i]) & 0xff; if (val < 16) { hexValue.append("0"); } hexValue.append(Integer.toHexString(val)); } return hexValue.toString(); } /** * Title: MD5加密 * Description: TestDemo * @author lu * @date 2016年6月23日 下午2:43:31 * @param inStr * @return */ public static String md5(String inStr) { MessageDigest md5 = null; try { md5 = MessageDigest.getInstance("MD5"); } catch (Exception e) { System.out.println(e.toString()); e.printStackTrace(); return ""; } char[] charArray = inStr.toCharArray(); byte[] byteArray = new byte[charArray.length]; for (int i = 0; i < charArray.length; i++) byteArray[i] = (byte) charArray[i]; byte[] md5Bytes = md5.digest(byteArray); StringBuffer hexValue = new StringBuffer(); for (int i = 0; i < md5Bytes.length; i++) { int val = ((int) md5Bytes[i]) & 0xff; if (val < 16) hexValue.append("0"); hexValue.append(Integer.toHexString(val)); } return hexValue.toString(); } /** * Title: 加密解密算法 執(zhí)行一次加密,兩次解密 * Description: TestDemo * @author lu * @date 2016年6月23日 下午2:37:29 * @param inStr * @return */ public static String convertMD5(String inStr) { char[] a = inStr.toCharArray(); for (int i = 0; i < a.length; i++) { a[i] = (char) (a[i] ^ 't'); } String s = new String(a); return s; } public static String md5Decode(String str) { return convertMD5(convertMD5(str)); } public static void main(String[] args) { String s = new String("13917114404"); System.out.println(md5Decode("a6aeb3ffa55fc7d664406af9c3bd0f1b")); System.out.println("原始:" + s); System.out.println("MD5后:" + md5(s)); System.out.println("加密的:" + convertMD5(s)); System.out.println("解密的:" + convertMD5(convertMD5(s))); System.out.println(md5("13917114404")); } }
以上就是本文的全部內(nèi)容,希望對大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
SpringBoot服務(wù)訪問路徑動態(tài)處理方式
這篇文章主要介紹了SpringBoot服務(wù)訪問路徑動態(tài)處理方式,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2023-12-12spring?security需求分析與基礎(chǔ)環(huán)境準(zhǔn)備教程
這篇文章主要為大家介紹了spring?security需求分析與基礎(chǔ)環(huán)境準(zhǔn)備教程,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步2022-03-03Mybatis主配置文件的properties標(biāo)簽詳解
這篇文章主要介紹了Mybatis主配置文件的properties標(biāo)簽,本文給大家介紹的非常詳細(xì),對大家的學(xué)習(xí)或工作具有一定的參考借鑒價值,需要的朋友可以參考下2020-08-08Java?file.delete刪除文件失敗,Windows磁盤出現(xiàn)無法訪問的文件問題
這篇文章主要介紹了Java?file.delete刪除文件失敗,Windows磁盤出現(xiàn)無法訪問的文件問題,具有很好的參考價值,希望對大家有所幫助,如有錯誤或未考慮完全的地方,望不吝賜教2024-06-06什么情況下會出現(xiàn)java.io.IOException?:?Broken?pipe這個錯誤以及解決辦法
這篇文章主要介紹了什么情況下會出現(xiàn)java.io.IOException?:?Broken?pipe這個錯誤以及解決辦法的相關(guān)資料,這個錯誤表示通信另一端已關(guān)閉連接,常發(fā)生在客戶端關(guān)閉連接、網(wǎng)絡(luò)超時或資源不足等情況,文中將解決辦法介紹的非常詳細(xì),需要的朋友可以參考下2024-10-10SpringBoot如何通過webjars管理靜態(tài)資源文件夾
這篇文章主要介紹了SpringBoot如何通過webjars管理靜態(tài)資源文件夾,文中通過示例代碼介紹的非常詳細(xì),對大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價值,需要的朋友可以參考下2020-10-10