論文格式
              電氣工程 會計論文 金融論文 國際貿(mào)易 財務(wù)管理 人力資源 輕化工程 德語論文 工程管理 文化產(chǎn)業(yè)管理 信息計算科學 電氣自動化 歷史論文
              機械設(shè)計 電子通信 英語論文 物流論文 電子商務(wù) 法律論文 工商管理 旅游管理 市場營銷 電視制片管理 材料科學工程 漢語言文學 免費獲取
              制藥工程 生物工程 包裝工程 模具設(shè)計 測控專業(yè) 工業(yè)工程 教育管理 行政管理 應(yīng)用物理 電子信息工程 服裝設(shè)計工程 教育技術(shù)學 論文降重
              通信工程 電子機電 印刷工程 土木工程 交通工程 食品科學 藝術(shù)設(shè)計 新聞專業(yè) 信息管理 給水排水工程 化學工程工藝 推廣賺積分 付款方式
              • 首頁 |
              • 畢業(yè)論文 |
              • 論文格式 |
              • 個人簡歷 |
              • 工作總結(jié) |
              • 入黨申請書 |
              • 求職信 |
              • 入團申請書 |
              • 工作計劃 |
              • 免費論文 |
              • 合作期刊 |
              • 論文同學網(wǎng) |
              搜索 高級搜索

              當前位置:論文格式網(wǎng) -> 畢業(yè)論文 -> 計算機論文
              畢業(yè)論文標題:

              基于J2ME技術(shù)的手機網(wǎng)上繳費查詢的設(shè)計與實現(xiàn)

               本文ID:LWGSW13532 價格:收費積分/100
              掃一掃 掃一掃
              本站會員可自行下載:下載地址 基于J2ME技術(shù)的手機網(wǎng)上繳費查詢的設(shè)計與實現(xiàn) (收費:1000 積分)  

              論文字數(shù):12937,頁數(shù):42  有開題報告,任務(wù)書

              摘  要
               本次畢業(yè)設(shè)計設(shè)計并實現(xiàn)了一個移動Web服務(wù)的框架,所謂移動Web服務(wù),是一種讓人們使用移動電話、PDA等無線通訊設(shè)備接入Internet的全新接入方式,通過這類服務(wù)的用戶可以享受到高速的無線傳輸,包括Internet上的各類新聞、在線游戲、銀行各種網(wǎng)上業(yè)務(wù)等一系列網(wǎng)絡(luò)應(yīng)用服務(wù)。本文的工作主要集中在:
               詳細闡述開發(fā)移動Web服務(wù)所需要的兩種關(guān)鍵技術(shù)(J2ME和HTTP)的工作原理。
               利用自己的開發(fā)實例分析了移動Web服務(wù)的主要編程思想,即MIDP(Mobile Information Device Profile)網(wǎng)絡(luò)程序設(shè)計,以及J2ME(Java 2 Platform Micro Edition)技術(shù)與HTTP (Hypertext Transfer Protocol,超文本傳輸協(xié)議)技術(shù)的結(jié)合。
               本文具體展示了作者如何實現(xiàn)移動Web服務(wù)的客戶端,其中包含以下工作:首先,提出了一個完整的移動Web服務(wù)的解決方案,包括客戶端與服務(wù)器的結(jié)構(gòu)框架;其次,實現(xiàn)了移動Web服務(wù)中的查詢繳費清單的功能。本論文程序涉及9個J2ME類和一個Servlet類。
              關(guān)鍵詞:J2ME,HTTP,移動Web服務(wù)
               

              The design and the realization of fee search up based on the J2ME’s technical cellular phone
              Abstract
               This project has designed and realized a frame of a Mobile Web Service. Mobile Service is a brand-new access method, and it can let people use wireless telecommunication equipments such as cellular telephone, PDA to access the Internet. Through the services, user can enjoy high-speed wireless data transmission. The series of network application services includes news on the Internet, games on line, online banks and so on. My research is concentrated mainly on the following aspects.
               First, the project discusses in detail the operating principles of two key technologies: J2ME and HTTP, which are needed in developing Mobile Web Service.
               Then, it analyzes the main programming principles that MIDP network program design, J2ME and HTTP are combined, utilizing my own development instance.
               Third, it discusses how to realize the client of Mobile Web Service, which includes the following work.
               This project puts forward an integrated solution for Mobile Web Service which includes the structure frames of server and client.
               It realizes the function of the inquiry to pay expense in Mobile Web Service. The procedure of this paper involves nine classes of J2MEs and Servlet.
              Key words:J2ME,HTTP,Mobile Web Service

              目   錄
              插圖索引  1
              1 Java 2 Micro Edition 概述  2
              1.1 引言  2
              1.2 J2ME的體系結(jié)構(gòu)  3
              1.2.1 J2ME基本概念  3
              1.2.2 J2ME總體架構(gòu)  4
              1.2.3 J2ME在各種Java版本中的定位  6
              1.3 J2ME開發(fā)的優(yōu)勢和不足  7
              1.3.1 優(yōu)勢  7
              1.3.2 劣勢  8
              1.4 MIDP應(yīng)用程序編寫  9
              1.4.1 MIDP的UI  9
              1.4.2 MIDP的API  9
              1.4.3 什么是MIDlet  10
              1.4.4 一個MIDlet例子  11
              1.4.5 MIDP 軟件包  13
              2 MIDP無線網(wǎng)絡(luò)開發(fā)  14
              2.1 概述  14
              2.2 使用 Http進行網(wǎng)絡(luò)連接  15
              2.2.1 J2ME與服務(wù)器交互信息  16
              3 移動Web 服務(wù)的實現(xiàn)  18
              3.1 移動Web服務(wù)的背景  18
              3.2 服務(wù)簡介  19
              3.3 整體設(shè)計  19
              3.4 繳費查詢系統(tǒng)的功能模塊  20
              3.5 網(wǎng)絡(luò)處理模塊的設(shè)計  21
              3.6 用戶界面  22
              3.7 服務(wù)器  24
              3.7.1 服務(wù)器介紹  24
              3.7.2 編寫服務(wù)器端 Servlet  24
              結(jié)論  26
              致謝  27
              參考文獻  28
              附錄 主要源程序  30


              相關(guān)論文
              本論文在計算機論文欄目,由論文格式網(wǎng)整理,轉(zhuǎn)載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
              上一篇:掃描鏈阻塞技術(shù)中TSP問題的算法研.. 下一篇:網(wǎng)上智力撲克系統(tǒng)的設(shè)計與開發(fā)
              Tags:J2ME技術(shù) 手機 網(wǎng)上繳費查詢 【收藏】 【返回頂部】
              最新文章
              熱門文章
              計算機論文
              推薦文章

              本站部分文章來自網(wǎng)絡(luò),如發(fā)現(xiàn)侵犯了您的權(quán)益,請聯(lián)系指出,本站及時確認刪除 E-mail:349991040@qq.com

              論文格式網(wǎng)(www.donglienglish.cn--論文格式網(wǎng)拼音首字母組合)提供計算機論文畢業(yè)論文格式,論文格式范文,畢業(yè)論文范文

              Copyright@ 2010-2018 LWGSW.com 論文格式網(wǎng) 版權(quán)所有 蜀ICP備09018832號

              感谢您访问我们的网站,您可能还对以下资源感兴趣:

              论文格式网:毕业论文格式范文