我有一个包含toLowerCase( Locale.ENGLISH )
当我在客户端使用这个课时,我得到了
[ERROR] [onboardingtool] Line 37: The method toLowerCase() in the type String is not applicable for the arguments (Locale)
但是当我查看GWT文档时,似乎已经支持ROOT
,US
和ENGLISH
。
以下是链接:http://www.gwtproject.org/doc/latest/RefJreEmulation.html(搜索" LOCALE")
我正在使用GWT 2.6.1。我如何使它工作?
答案 0 :(得分:3)
Locale
仅在GWT 2.7.0(RC1)及更高版本中受支持。
Here are the release notes of GWT 2.7.0 (RC1),具体来说:
“新模拟课程: Locale
,NavigableSet
和NavigableMap
”
和
“Class
中的新模拟方法, String
,......”
如果您使用的是GWT 2.6.1,Locale
和String#toLowerCase(Locale)
将无法使用。