In my GWT application, on the client side Java file, I have written a line to print the Locale:
System.out.println(Locale.getDefault());
In addition to information in RAS's answer, you could use GWT's class LocaleInfo to obtain information about available locales or current locale.
System.out.println(LocaleInfo.getCurrentLocale());
Hope this helps!