2

也许有人问过这个问题,但我找不到。我是 Vaadin 的新手。以及如何为 Vaadin 应用程序设置默认语言环境。

4

1 回答 1

6

Vaadin 6:应用程序#setLocale(区域设置)

Vaadin 7 : VaadinSession#setLocale(Locale)例如VaadinSession.getCurrent().setLocale();

Vaadin 7 的示例代码,可能在initUI 方法中使用。

Locale locale = Locale.CANADA_FRENCH;
this.setLocale( locale ); // Call to affect this current UI. Workaround for bug/issue: http://dev.vaadin.com/ticket/12350
this.getSession().setLocale( locale ); // Affects only future UI instances, not current one. See workaround in line above.
// VaadinSession.getCurrent().setLocale( locale ); // Alternative to "this.getSession".
于 2013-05-02T07:01:21.660 回答