根据日期生成编号(年月日时分秒)

    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);

 小项目可以用,重复可能很小。

你可能感兴趣的:(Java,java,string,eclipse)