马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
到时我们不用学struts,不用学spring,不用学Hibernate,只要能把jsf学会了,完全可以替代所有的框架,包括AJAX,都知道AJAX并不是新技术,虽说我没深入学习jsf但我认为jsf应该已经能通过其它技术替代AJAX,实现无缝刷新。编程
/*
*dateFieldlet.java
*
*Createdon2005年4月15日,上午11:32
*/
importjavax.microedition.midlet.*;
importjavax.microedition.lcdui.*;
/**
*
*@authorAdministrator
*@version
*/
publicclassdateFieldletextendsMIDletimplementsCommandListener{
privateFormaForm;
privateDisplayaDisplay;
privateDateFieldaDateField;
privateCommandexitCommand;
privateCommandokCommand;
privateAlertanAlert;
publicdateFieldlet(){
anAlert=newAlert("Today",null,null,AlertType.INFO);
anAlert.setTimeout(3000);
exitCommand=newCommand("EXIT",Command.EXIT,1);
okCommand=newCommand("OK",Command.EXIT,1);
aForm=newForm("DateFieldTest");
aDateField=newDateField("Today’sdate:",DateField.DATE_TIME);
aForm.append(aDateField);
aForm.addCommand(exitCommand);
aForm.addCommand(okCommand);
aForm.setCommandListener(this);
}
publicvoidstartApp(){
aDisplay=Display.getDisplay(this);
aDisplay.setCurrent(aForm);
}
publicvoidpauseApp(){
}
publicvoiddestroyApp(booleanunconditional){
}
publicvoidcommandAction(Commandc,Displayabled){
//inti=0;
Strings="";
if(c==exitCommand){
destroyApp(false);
notifyDestroyed();
}
else{
s=aDateField.getDate().toString();
anAlert.setString(s);
aDisplay.setCurrent(anAlert,aForm);
}
}
}
java是一种面向对象的编程语言,优点是可移植性比较高,最初设计时就是本着一次编写到处执行设计的。可以开发各种应用程序和游戏,不过速度没有c++快,所以一般是不用java来编写应用程序和电脑游戏。 |