J2ME/J2EE实现用户登录交互 - 编程入门网
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-06-16
ull; private TextField username = null; private TextField password = null; private Alert alert = null; private Alert error = null; public LoginForm() { form = new Form("喘薩鞠村"); display.setCurrent(form); login = new Command("鞠村", Command.SCREEN, 1); exit = new Command("曜竃", Command.EXIT, 1); form.addCommand(login); form.addCommand(exit); username = new TextField("喘薩兆", "", 20, TextField.ANY); password = new TextField("畜鷹", "", 20, TextField.PASSWORD); form.append(username); form.append(password); form.setCommandListener(this); } public void initAlertOK() { alert = new Alert("戻幣", "鞠村撹孔!!\r\n艇議喘薩兆葎:" + username.getString() + "\r\n畜鷹葎:" + password.getString(), null, AlertType.INFO); alert.setTimeout(Alert.FOREVER); display.setCurrent(alert); } public void initAlertError() { error = new Alert("戻幣", "鞠村払移,喘薩兆賜畜鷹危列", null, AlertType.ERROR); display.setCurrent(error); } protected void startApp() throws MIDletStateChangeException { } /** *//** * 並周侃尖 */ public void commandAction(Command cmd, Displayable dis) { // 泣似曜竃梓泥並周 if (cmd.getCommandType() == Command.EXIT) { System.out.println("exit"); this.notifyDestroyed(); } if (cmd == login) { // 駅倬蝕尼鏡羨?殻栖侃尖Http萩箔,倦夸氏夛撹棒迄 new Thread(new Runnable() { public void run() { try { inTurnServer(); } catch (Exception e) { e.printStackTrace(); } } }).start(); } } /** *//*************************************************************************** * 嚥捲暦匂住札?購旗鷹 */ public void inTurnServer() { try { // 捲暦匂萩箔仇峽 String url = "http://localhost:8888/LoginWeb/LoginServlet"; // 喘薩補秘議喘薩兆 String username = this.username.getString(); // 喘薩補秘議畜鷹 String password = this.password.getString(); // 喘url秀羨匯倖Http銭俊(芦畠議) HttpConnection conn = (HttpConnection) Connector.open(url); // 譜崔萩箔窃侏葎POST conn.setRequestMethod(HttpConnection.POST); // 譜崔匯違議萩箔奉來 conn.setRequestProperty("Content-Type", "application/x-www-form-urlencoded"); |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于J2ME/J2EE实现用户登录交互 - 编程入门网的所有评论