码迷,mamicode.com
首页 > 其他好文 > 详细

生成6位随机码含字母大小写+数字

时间:2016-12-04 07:30:07      阅读:311      评论:0      收藏:0      [点我收藏+]

标签:print   char   length   row   app   and   case   ring   void   

/**
 * Created by Administrator on 2016/11/6.
 */
public class test2 {
    public static void main(String[] args)throws IOException{
        String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZ";
        str+= str.toLowerCase();
        str +="0123456789";
        System.out.println(str);
        char ch = str.charAt(str.length()-1);
        System.out.println(ch);
        StringBuffer sb = new StringBuffer(6);
        for (int i = 0; i <6 ; i++) {
            char ch2 = str.charAt(new Random().nextInt(str.length()));
            sb.append(ch2);
        }
        System.out.println(sb);
    }
}

生成方法很多,也可以用Math来做

生成6位随机码含字母大小写+数字

标签:print   char   length   row   app   and   case   ring   void   

原文地址:http://www.cnblogs.com/xiaoxiao0314/p/6130067.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!