生成随机数

/**
 n 为随机数位数
 */
String random = ((Math.random()*9+1)*Math.pow(10,n)+"").substring(0, n);