首页 > 代码库 > android产生随机数
android产生随机数
public void getCharAndNumr() { // String val = "",va=""; String a="",b="",c="",d=""; Random random = new Random(); // for(int i = 0; i < 1; i++) // { // String charOrNum = random.nextInt(2) % 2 == 0 ? "char" : "num"; // 输出字母还是数字 // if("char".equalsIgnoreCase(charOrNum)) // 字符串 // if(true) //{ int choice = random.nextInt(2) % 2 == 0 ? 65 : 97; //取得大写字母还是小写字母 //a += (char) (choice + random.nextInt(26)); b += (char) (choice + random.nextInt(26)); choice = random.nextInt(2) % 2 == 0 ? 65 : 97; //取得大写字母还是小写字母 a += (char) (choice + random.nextInt(26)); // } // else if("num".equalsIgnoreCase(charOrNum)) // 数字 // if(true) // { // //val += String.valueOf(random.nextInt(10)); // int choice = random.nextInt(2) % 2 == 0 ? 65 : 97; //取得大写字母还是小写字母 // a += (char) (choice + random.nextInt(26)); // // b += (char) (choice + random.nextInt(26)); // // } TextView tw1=(TextView) findViewById(R.id.textView3); // String a="",b=""; c = String.valueOf((int)(Math.random() * 9+1)) ; d = String.valueOf((int)(Math.random() * 9+1)) ; tw1.setText(a+""+c+""+b+""+d+""); // } // ContentValues values = new ContentValues(); //values.put("name", tw1.getText().toString()); // db.insert("tb_1", null, values); }
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。