/**
* 英數亂數
* @param len
* @return
*/
public static String randomString(int len) {
String str = "0123456789abcdefghijklmnopqrstuvwxyz";
StringBuffer sb = new StringBuffer();
for (int i = 0; i < len; i++) {
int idx = (int)(Math.random() * str.length());
sb.append(str.charAt(idx));
}
return sb.toString();
}
歡迎轉載,請註明出處。
沒有留言:
張貼留言