Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望我的 GWT 程序能够确定它是处于托管模式还是 Web 模式。有没有办法做到这一点?
谢谢!
GWT.isScript() 在非托管模式下返回 true,在托管模式下返回 false。
http://google-web-toolkit.googlecode.com/svn/javadoc/1.5/com/google/gwt/core/client/GWT.html#isScript()
小心这个。您仍然无法在语句中运行未模拟的 Java 代码。
if(GWT.isScript()) { //some code not in the JRE emulation here }
示例代码将导致编译时问题。