8

我希望我的 GWT 程序能够确定它是处于托管模式还是 Web 模式。有没有办法做到这一点?

谢谢!

4

2 回答 2

9

GWT.isScript() 在非托管模式下返回 true,在托管模式下返回 false。

http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/core/client/GWT.html#isScript()

于 2008-10-21T21:35:49.360 回答
0

小心这个。您仍然无法在语句中运行未模拟的 Java 代码。

if(GWT.isScript()) {
  //some code not in the JRE emulation here
}

示例代码将导致编译时问题。

于 2009-06-30T22:41:43.017 回答