資源描述:
《手機訪問sql數(shù)據(jù)庫》由會員上傳分享,免費在線閱讀,更多相關內(nèi)容在工程資料-天天文庫。
1、J2mec/s結構,訪問數(shù)據(jù)庫第一步:配制好j2me客戶端。1、裝好JDK。2、裝好WirelessToolkit2.5.2手機模擬軟件。第二步:配制好serverlet服務器端。1、裝好Tomcat,并配制好。第三步:寫手機端代碼NetMain.java類,手機程序的主類;importjavax.microedition.midlet.MIDlet;importjavax.microedition.lcdui.*;importjavax.microedition.midlet.MIDletStateChangeException;publicclassNetMainextendsMIDlet
2、implementsCommandListener{privateDisplaydis;sendMsgsm;privateCommandsd=newCommand("連接",Command.OK,1);//發(fā)送數(shù)據(jù)的按鈕privateCommandex=newCommand("退出",Command.EXIT,1);//publicNetMain(){dis=Display.getDisplay(this);////TODOAuto-generatedconstructorstub}protectedvoiddestroyApp(booleanarg0)throwsMIDletStateCha
3、ngeException{//TODOAuto-generatedmethodstub}protectedvoidpauseApp(){//TODOAuto-generatedmethodstub}protectedvoidstartApp()throwsMIDletStateChangeException{Formf=newForm("聯(lián)網(wǎng)測試");//顯示在屏幕的Form對象f.append("發(fā)送數(shù)據(jù)");f.addCommand(sd);f.addCommand(ex);f.setCommandListener(this);//設置按鈕監(jiān)聽dis.setCurrent(f);//TOD
4、OAuto-generatedmethodstub}publicvoidcommandAction(Commandc,Displayabled){if(c==sd){sm=newsendMsg(this);//調(diào)用sendMsg類,將本類作為參數(shù)傳入dis.setCurrent(sm);//顯示sendMsg類}elseif(c==ex){try{destroyApp(false);}catch(MIDletStateChangeExceptione){//TODOAuto-generatedcatchblocke.printStackTrace();}notifyDestroyed();}}
5、publicvoidexit(){Formf=newForm("聯(lián)網(wǎng)測試");//顯示在屏幕的Form對象f.append("發(fā)送數(shù)據(jù)");f.addCommand(sd);f.addCommand(ex);f.setCommandListener(this);//設置按鈕監(jiān)聽dis.setCurrent(f);//TODOAuto-generatedmethodstub}}發(fā)送請求得到數(shù)據(jù)類sendMsg.javaimportjavax.microedition.lcdui.*;importjavax.microedition.io.*;importjava.io.*;publicclass
6、sendMsgextendsFormimplementsCommandListener,Runnable{Stringurl="http://jike089.eicp.net:8000/test/returnMsg";//定義聯(lián)網(wǎng)用的URLStringreturnMsg="";//獲得返回字符串Commandexit=newCommand("返回",Command.OK,1);//退出程序的按鈕Threadt;//定義聯(lián)網(wǎng)用線程NetMainnm;//NetMain的實例publicsendMsg(NetMainnm)//構造函數(shù),將NetMain的實例傳入{super("返回結果");//定
7、義Form的標題this.nm=nm;t=newThread(this);t.start();//啟動線程}publicvoidrun(){try{returnMsg=sendHttpGet(url);//將url傳到sendHttpGet方法里做參數(shù),并返回服務器結果的字符串賦值給returnMsg//System.out.println(returnMsg);append(returnMsg)