Unique ID based on Current Date Format yymmddHHmmss in Java

1.3k Views Asked by At

I need to create a unique ID or reference number that's based on the current time format yymmddHHmmss + (sequence 0-9). I know about UUID but I prefer this instead. Can someone show me how to do it in Java? Thanks.

2

There are 2 best solutions below

0
On

java.time

I recommend that you use java.time, the modern Java date and time API, for your date and time work. Here’s a suggestion doing so.

private static final int MIN_SEQ = 0;
private static final int MAX_SEQ = 9;
private static final DateTimeFormatter FORMATTER
        = DateTimeFormatter.ofPattern("yyMMddHHmmss");

private LocalDateTime lastTime = LocalDateTime.now(ZoneId.systemDefault())
        .minusMinutes(1); // Initialize to a time in the past
private int lastSeq = 0; // Initialize to any value

public String getUniqueId() {
    LocalDateTime time = LocalDateTime.now(ZoneId.systemDefault())
            .truncatedTo(ChronoUnit.SECONDS);
    if (time.isBefore(lastTime)) {
        throw new IllegalStateException("Time is going backward");
    }
    if (time.isAfter(lastTime)) {
        lastTime = time;
        lastSeq = MIN_SEQ;
    } else { // Still the same time
        lastSeq++;
    }
    if (lastSeq > MAX_SEQ) {
        throw new IllegalStateException("Out of sequence numbers for this time");
    }
    return lastTime.format(FORMATTER) + lastSeq;
}

It will break miserably under the following two circumstances:

  1. If used during the spring back where clocks are turned back and the same times repeat.
  2. If the time zone of your JVM is changed. Any part of your program and any other program running in the same JVM may do that at any time.

It will also give non-increasing IDs if the program happens to be running by New Year 2100. Since a LocalDateTime includes full year, it will continue running and giving IDs, though.

Why not try it out?

    for (int i = 0; i < 12; i++) {
        System.out.println(getUniqueId());
        TimeUnit.MILLISECONDS.sleep(150);
    }

In one case output was:

2104212202180
2104212202181
2104212202190
2104212202191
2104212202192
2104212202193
2104212202194
2104212202195
2104212202196
2104212202200
2104212202201
2104212202202

Link

Oracle tutorial: Date Time explaining how to use java.time.

4
On

Use simple date formatter to format the current timestamp to 'yymmddHHmmss' and use a global variable to get the sequence number for that timestamp.

private static final int MIN_SEQ = 0;
private static final int MAX_SEQ = 9;

private String lastDate = new SimpleDateFormat("yyMMddHHmmss").format(new Date());
private int lastSequence = 0;

private static String getUID()
{
    String currentDateTime = new SimpleDateFormat("yyMMddHHmmss").format(new Date());

    if (currentDateTime.equals(lastDate))
    {
        lastSequence++;
    }
    else
    {
        lastDate = currentDateTime;
        lastSequence = MIN_SEQ;
    }

    if (lastSequence > MAX_SEQ)
    {
        throw new IllegalStateException("Sequence numbers out of range.!");
    }

    return lastDate + lastSequence;
}

Output

2104211714401
2104211714402
2104211714403
2104211714404
2104211714405
2104211714406

2104211714410
2104211714411
2104211714412
2104211714413
2104211714414