15

Is there any way to generate UUID with GWT?

tshepang
  • 12,111
  • 21
  • 91
  • 136
cupakob
  • 8,411
  • 24
  • 67
  • 76

1 Answers1

4

You can generate an UUID in GWT by reusing a Javascript UUID implementation an wrapping it using JSNI:

public native static String uuid() /*-{
    return 'xxxxxxxx-xxxx-4xxx-yxxx-xxxxxxxxxxxx'.replace(/[xy]/g,
            function(c) {
                var r = Math.random() * 16 | 0, v = c == 'x' ? r
                        : (r & 0x3 | 0x8);
                return v.toString(16);
            });
}-*/;

If you want just an unique ID (not an UUID) to use in your GWT elements, use:

String id = DOM.createUniqueId();
Italo Borssatto
  • 15,044
  • 7
  • 62
  • 88