Search code examples
javaxpages

Is it possible to get getLocaleString() value in Java in XPages?


Is it possible to get the getLocaleString() value in Java in XPages?
In SSJS I can get it as below -

context.getLocaleString() ;

Is something similar available in Java?


Solution

  • I have used this before:

    return FacesContext.getCurrentInstance().getViewRoot().getLocale().toString();