Skip to content

Instantly share code, notes, and snippets.

@zxlooong
Last active December 12, 2015 05:48
Show Gist options
  • Save zxlooong/4723803 to your computer and use it in GitHub Desktop.
Save zxlooong/4723803 to your computer and use it in GitHub Desktop.
GenGUID.java
import java.util.UUID;
public class GenUUID {
public static void main(String[] args) {
for(int i=0; i<100; i++){
UUID uuid = UUID.randomUUID();
System.out.println (uuid);
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment