|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
你总不能说你写框架吧,那无疑会加大工作量,现在大多企业采取的是折中的办法,就是改别人写好的框架,可要改框架,前提是你对这个框架足够的了解,这就更难了。编程
/**gaugelet.java**Createdon2005年4月15日,下战书5:19*/
importjavax.microedition.midlet.*;importjavax.microedition.lcdui.*;
/****@authorAdministrator*@version*/publicclassgaugeletextendsMIDletimplementsCommandListener{privateGaugeaGauge;privateFormaForm;privateCommandexitCommand;privateCommandokCommand;privateDisplayaDisplay;privateAlertanAlert;publicgaugelet(){aForm=newForm("GaugeTest");exitCommand=newCommand("EXIT",Command.EXIT,1);okCommand=newCommand("OK",Command.OK,1);aGauge=newGauge("gaugedisplay",true,100,50);anAlert=newAlert("Value",null,null,AlertType.INFO);aForm.addCommand(exitCommand);aForm.addCommand(okCommand);aForm.append(aGauge);aForm.setCommandListener(this);}publicvoidstartApp(){aDisplay=Display.getDisplay(this);aDisplay.setCurrent(aForm);}publicvoidpauseApp(){}publicvoiddestroyApp(booleanunconditional){}publicvoidcommandAction(Commandc,Displayabled){Strings="TheValueis";inti;if(c==exitCommand){destroyApp(false);notifyDestroyed();}else{i=aGauge.getValue();s+=Integer.toString(i);anAlert.setString(s);aDisplay.setCurrent(anAlert,aForm);}}}
J2ME在手机游戏开发的作用也是无用质疑的。至于桌面程序,可能有人说java不行,界面不好看,但是请看看NetBeans和Eclipse吧,他们都是利用java开发的,而他们的界面是多么的华丽,所以界面决不是java的缺点。还有一个不得不提的优点就是大多java人员都挂在嘴边的java的跨平台性,目前这确实也是java优点之一。 |
|