zoukankan      html  css  js  c++  java
  • 随机产生一个密码,要求同时包含大小写以及数字这三种字符。

    1. public class RandomPasswd {  
    2.     public static String randomPasswd(int n){  
    3.         if(n<3){  
    4.             return null;  
    5.         }  
    6.         //先把前三位分别给一个小写,一个大写,一个数字,这样后面的就可以完全随机,不用担心没有大小写或者数字了  
    7.         char[]passwd=new char[n];  
    8.         int ran=(int)(Math.random()*26);  
    9.         passwd[0]= (char) ('A'+ran);  
    10.         ran=(int)(Math.random()*26);  
    11.         passwd[1]=(char) ('a'+ran);  
    12.         ran=(int)(Math.random()*10);  
    13.         passwd[2]=(char) ('0'+ran);  
    14.         for(int i=3;i<n;i++){  
    15.             //设置一个随机变量,当随机数等于0时,产生小写,等于1时,产生大写,,  
    16.             int rand=(int)(Math.random()*3);  
    17.             if(rand==0){  
    18.                 ran=(int)(Math.random()*26);  
    19.                 passwd[i]= (char) ('A'+ran);  
    20.             }  
    21.             if(rand==1){  
    22.                 ran=(int)(Math.random()*26);  
    23.                 passwd[i]= (char) ('a'+ran);  
    24.             }  
    25.             if(rand==2){  
    26.                 ran=(int)(Math.random()*10);  
    27.                 passwd[i]= (char) ('0'+ran);  
    28.             }  
    29.         }  
    30.         String randompwd= new String(passwd);  
    31.         return randompwd;  
    32.     }  
    33.   
    34.     public static void main(String[] args) {  
    35.         System.out.println(randomPasswd(10));  
    36.     }  
    37. http://blog.csdn.net/u014082714/article/details/53162974
  • 相关阅读:
    curl常用选项
    cuda
    mysql 备份文件.xbstream 恢复到本地
    firewall 常用命令(update...)
    ownCloud 研究笔记(update...)
    V3
    English trip EM3-LP-3A ROOMMATES Teacher:Corrine
    V3
    English trip EM3-LP-5A Shopping Teacher:Taylor
    新概念 Lesson 11 Which book?
  • 原文地址:https://www.cnblogs.com/yd150036/p/6210366.html
Copyright © 2011-2022 走看看