Main.java Source code

Java tutorial

Introduction

Here is the source code for Main.java

Source

//package com.java2s;

import java.util.UUID;

public class Main {

    public static String getUUID() {
        String[] str = UUID.randomUUID().toString().split("-");
        String uuidStr = "";
        for (String s : str) {
            uuidStr += s;
        }
        return uuidStr;
    }
}