devxlogo

UUID in Java

/*A UUID is a 36 character string, 32 alphanumeric characters and 4 hypens123e4567-e89b-12d3-a456-426655440000Java supports generation and usage of this using the java.util.UUID class*/public class JavaUUID{    public static void main(String args[])    {        generateUUID();    }        private static void generateUUID()    {        //Creating a UUID             java.util.UUID uuid = java.util.UUID.fromString("63982000-bc30-ab45-df12-8752fbac99");        System.out.println("The UUID value: " + uuid);                    //Generating a new randon UUID        System.out.println("New random UUID value: " + uuid.randomUUID());        }}
Image

Charlie has over a decade of experience in website administration and technology management. As the site admin, he oversees all technical aspects of running a high-traffic online platform, ensuring optimal performance, security, and user experience.

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.