java生成随机字母

public class RandomTest extends TestCase {
	public void testRandom1() throws Exception {
		String s = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
		char[] c = s.toCharArray();
		Random random = new Random();
		for( int i = 0; i < 8; i ++) {
			System.out.println(c[random.nextInt(c.length)]);
		}
	}
}

这个方法网上是事后网上找的.是聪明的做法.

	public void testRandom2() throws Exception {
		Random random = new Random();
		for( int i = 0; i < 8; i ++) {
			int choice = random.nextInt(2) % 2 == 0 ? 65 : 97; // 取得大写还是小写
			System.out.println((char)(choice + random.nextInt(26)));
		}
	}

这个自己想的,后来发现网上也很多人介绍.笨许多了.

你可能感兴趣的:(java,C++,c,C#)