GWT:如何在客户端使用 Locale.ENGLISH?

GWT: how to use Locale.ENGLISH in client side?

我有一份遗产 class,其中包含 toLowerCase( Locale.ENGLISH )

当我在客户端使用这个 class 时,我得到

[ERROR] [onboardingtool] Line 37: The method toLowerCase() in the type String is not applicable for the arguments (Locale)

但是当我查看 GWT 文档时,似乎已经支持 ROOTUSENGLISH。 这是 link:http://www.gwtproject.org/doc/latest/RefJreEmulation.html(搜索 "LOCALE")

我正在使用 GWT 2.6.1。我如何让它发挥作用?

Locale 仅在 GWT 2.7.0 (RC1) 及更高版本中受支持。

Here are the release notes of GWT 2.7.0 (RC1),具体来说:

"New emulated classes: Locale, NavigableSet, and NavigableMap"

"New emulated methods in Class, String, ..."


如果您使用的是 GWT 2.6.1,LocaleString#toLowerCase(Locale) 将不可用。