GWT 1.7是否支持Class.getSimpleName()
?
我目前正在使用1.6,它不支持此方法。
http://code.google.com/p/google-web-toolkit/issues/detail?id=3404表示已经修复但未发布,但状态可能暂时没有更新。
我可以通过操纵Class.getName()
轻松地复制它,但如果GWT 1.7支持这种方法,那么我将升级到它。
答案 0 :(得分:10)
幸运的是,这很容易解决。 this.getClass().getName().substring(this.getClass().getName().lastIndexOf(".")+1);
答案 1 :(得分:3)
不。
[ERROR] Line 23: The method getSimpleName() is undefined for the type Class<capture#1-of ? extends SimpleTest>
答案 2 :(得分:2)
根据the release notes,他们将其添加到GWT 2.6.0 RC1中。向下滚动到 JDK Emulation