java中如何使用Random隨機(jī)數(shù)、MD5加密工具類

這篇文章給大家分享的是有關(guān)java中如何使用Random隨機(jī)數(shù)、MD5加密工具類的內(nèi)容。小編覺得挺實(shí)用的,因此分享給大家做個(gè)參考,一起跟隨小編過來看看吧。

專注于為中小企業(yè)提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計(jì)服務(wù),電腦端+手機(jī)端+微信端的三站合一,更高效的管理,為中小企業(yè)高港免費(fèi)做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動(dòng)了上千多家企業(yè)的穩(wěn)健成長(zhǎng),幫助中小企業(yè)通過網(wǎng)站建設(shè)實(shí)現(xiàn)規(guī)模擴(kuò)充和轉(zhuǎn)變。

具體內(nèi)容如下

Random隨機(jī)數(shù)工具類

package com.jarvis.base.util;

import java.util.Random;

/**
 * 
 * 
 * @Title: RandomHelper.java
 * @Package com.jarvis.base.util
 * @Description: 隨機(jī)數(shù)工具類
 * @version V1.0 
 */
public class RandomHelper {
 /**
 * RANDOM 基數(shù)
 */
 private final static int RANDOM_BASE = 10;

 /**
 * 產(chǎn)生指定長(zhǎng)度的數(shù)字值隨機(jī)數(shù)
 *
 * @param length
 * 需要產(chǎn)生的長(zhǎng)度
 * @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;
 }

 /**
 * 描述:手機(jī)驗(yàn)證碼生成帶字符,包含數(shù)字和字符 作者: 時(shí)間:Oct 29, 2008 3:40:07 PM
 * 
 * @param len
 * 生成手機(jī)驗(yàn)證碼長(zhǎng)度
 * @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'};
 // 生成隨機(jī)類
 // 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;
 }

 /**
 * 描述:手機(jī)驗(yàn)證碼生成帶字符不包含數(shù)字
 * 
 * @param len
 * 生成手機(jī)驗(yàn)證碼長(zhǎng)度
 * @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'};
 // 生成隨機(jī)類
 // 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"));
 }
}

感謝各位的閱讀!關(guān)于“java中如何使用Random隨機(jī)數(shù)、MD5加密工具類”這篇文章就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,讓大家可以學(xué)到更多知識(shí),如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到吧!

當(dāng)前名稱:java中如何使用Random隨機(jī)數(shù)、MD5加密工具類
瀏覽路徑:http://muchs.cn/article22/iidcjc.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供軟件開發(fā)網(wǎng)站建設(shè)、面包屑導(dǎo)航、全網(wǎng)營(yíng)銷推廣、商城網(wǎng)站、云服務(wù)器

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

微信小程序開發(fā)