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 }
サンプル コードでは、コンパイル時に問題が発生します。