Random random = new Random();
DecimalFormat df = new DecimalFormat("00");
String no = new SimpleDateFormat("yyyyMMddHHmmss")
.format(new Date()) + df.format(random.nextInt(100));
System.out.println(no);
小项目可以用,重复可能很小。
Random random = new Random();
DecimalFormat df = new DecimalFormat("00");
String no = new SimpleDateFormat("yyyyMMddHHmmss")
.format(new Date()) + df.format(random.nextInt(100));
System.out.println(no);
小项目可以用,重复可能很小。