Java UUID Create uuid()

Here you can find the source of uuid()

Description

uuid

License

Open Source License

Declaration

public static String uuid() 

Method Source Code


//package com.java2s;
//License from project: Open Source License 

import java.util.*;

public class Main {
    public static String uuid() {
        return UUID.randomUUID().toString().replace("-", "");
    }/*ww  w  .  java 2  s .co m*/
}

Related

  1. getUUIDValue(String url, String key)
  2. isUUID(String string)
  3. parseUuid(String s)
  4. sizeOfUUID(UUID uuid)
  5. uuid()
  6. uuid()
  7. uuid()
  8. uuidFromString(String s)
  9. uuidWithTime()