è 点击 下一步 进入 新建J2ME Midlet 程序。在名称处输入:HelloWorld。然后点击 完成 ,系统就会自动生成一些代码。如下所示。
è 我们在Eclipse生成的程序里新增一两句话,就可以做HelloWorld这个最简单的程序了。
import javax.microedition.midlet.MIDlet; import javax.microedition.midlet.MIDletStateChangeException; /* * Created on 2004-10-21 * * TODO To change the template for this generated file go to * Window - PReferences - Java - Code Style - Code Templates */
/** * @author Administrator * * TODO To change the template for this generated type comment go to * Window - Preferences - Java - Code Style - Code Templates */ public class HelloWorld extends MIDlet { private TextBox textbox; //新增 /** * */ public HelloWorld() { super(); textbox = new TextBox("HelloWorld ", "你好,欢迎来到J2ME的世界!", 20, 0); //新增 // TODO Auto-generated constrUCtor stub }