我有以下代码
package e.vogella.gwt.helloworld;
import com.google.gwt.core.client.EntryPoint;
import com.google.gwt.event.dom.client.ClickEvent;
import com.google.gwt.event.dom.client.ClickHandler;
import com.google.gwt.user.client.Window;
import com.google.gwt.user.client.ui.Button;
import com.google.gwt.user.client.ui.Label;
import com.google.gwt.user.client.ui.RootPanel;
public class HelloGwt implements EntryPoint{
@Override
public void onModuleLoad(){
Label label=new Label("hello world");
Button button=new Button("say something");
button.addClickHandler(new ClickHandler(){
@Override
public void onClick (ClickEvent event){
Window.alert("hello again");
}
});
RootPanel.get().add(label);
RootPanel.get().add(button);
}
}
如何使我在点击运行时在屏幕上显示输出并不显示输出
答案 0 :(得分:0)
您需要使用GWT编译器将此代码编译为JavaScript,并在浏览器中运行代码,然后单击按钮。我建议使用开发模式使用调试器逐步执行代码,但首先我建议reading up a little more about GWT。