Skip to content

Instantly share code, notes, and snippets.

@SoltauFintel
Last active April 17, 2016 09:18
Show Gist options
  • Save SoltauFintel/be13c611f23a518a5d2d53d3dd7b0018 to your computer and use it in GitHub Desktop.
Save SoltauFintel/be13c611f23a518a5d2d53d3dd7b0018 to your computer and use it in GitHub Desktop.
GUID generieren
import java.util.UUID;
private static String genId() {
return UUID.randomUUID().toString().replace("-", "");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment