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

时间:2015-03-10 14:36:53

标签: java gwt locale emulation

我有一个包含toLowerCase( Locale.ENGLISH )

的遗留类

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

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

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

我正在使用GWT 2.6.1。我如何使它工作?

1 个答案:

答案 0 :(得分:3)

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

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

“新模拟课程: Locale NavigableSetNavigableMap

Class中的新模拟方法, String ,......”


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