《《安装开发工具》PPT课件.ppt》由会员分享,可在线阅读,更多相关《《安装开发工具》PPT课件.ppt(14页珍藏版)》请在三一办公上搜索。
1、准备工作,子曰:“工欲善其事,必先利其器。”,磨刀不误砍柴工厚积薄发,但是呢,很多情况下是薄积厚发,无论哪一种情况,如果想做的更好,都需要在做这个事情之前有一定的准备,安装开发工具,Q:手机游戏开发需要什么环境呢?A:有很多不同的版本,这里我们以JDK1.5、Eclipse 3.1版本为例。大家了解了安装流程之后,可以根据需要安装自己喜欢的版本。,安装步骤,1)安装JDK1.5配置环境变量;2)下载并安装Eclipse 3.1版;3)安装sun_java_wireless_toolkit-2_5_2-ml-windows,要求路径无空格、无怪异字符且无中文字符;4)以上三步安装并配置后,启动E
2、clipse并按如下步骤安装J2ME插件:,1.Install J2ME Plugin for Eclipse 3.1(eclipseme.feature_1.2.1_site.zip),选择New Archived Site(eclipseme.feature_1.2.1_site.zip),配置插件:Configuration J2ME Plugin for Eclipse 3.1,Create a J2ME Midlet Suite,如果能够完成以上步骤,就说明J2ME的开发环境已经安装成功了。下面来演示一个具体的例子,以说明在J2ME里开发的基本框架,以及测试我们的安装环境是否成功。,
3、第一个MIDlet手机程序,import javax.microedition.midlet.*;import javax.microedition.lcdui.*;public class HelloWorld extends MIDlet implements CommandListenerprivate Command exitCommand;private TextBox tb;public HelloWorld()exitCommand=new Command(退出,Command.EXIT,1);tb=new TextBox(你好!,J2ME,你好!,J2ME,15,0);tb.a
4、ddCommand(exitCommand);tb.setCommandListener(this);/TODO Auto-generated constructor stub protected void startApp()throws MIDletStateChangeException/TODO Auto-generated method stub Display.getDisplay(this).setCurrent(tb);protected void pauseApp()/TODO Auto-generated method stub protected void destroy
5、App(boolean arg0)throws MIDletStateChangeException/TODO Auto-generated method stub public void commandAction(Command c,Displayable d)if(c=exitCommand)try destroyApp(false);catch(MIDletStateChangeException e)notifyDestroyed();,相关网站信息,1)3)不同类型的手机模拟器(emulator)如:,相关参考信息,MIDP帮助文档C:WTK2.5.2docsapimidpindex.html,