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

        當前位置:論文格式網 -> 畢業論文 -> 計算機論文
        畢業論文標題:

        基于J2EE的公交查詢系統的設計與實現

         本文ID:LWGSW13808 價格:收費積分/100
        掃一掃 掃一掃
        本站會員可自行下載:下載地址 基于J2EE的公交查詢系統的設計與實現 (收費:1000 積分)  

        論文字數:10724,頁數:35

        摘  要
        公交查詢系統是城市道路交通的重要組成部分,是城市發展的必然產物,是聯系國民生活、社會生產和流通領域的關鍵環節。我國城市公交查詢系統的發展處于一個較落后的水平,人們可以獲得信息的方式很少,為了解決這種問題,設計出基于J2EE的公交查詢系統。
        本論文詳細介紹了整個系統的已實現的功能。首先,實現多種查詢功能,包括根據商廈名稱、公交車號、日常站點、和任意兩個站點查詢乘車路線。其次,采用最短路徑算法查找任意兩個站點之間的最短乘車路線。最后,提供了用戶留言的功能、用戶管理功能和后臺車次管理功能;用戶留言功能,主要是收集用戶的留言信息,可以根據用戶提供的留言信息或是提出的建議,對系統進行修改和完善;用戶管理功能,主要是刪除用戶信息和修改用戶基本信息;后臺車次管理功能主要包含添加車次和站點功能、更新車次和站點功能、刪除車次和站點功能,這樣做到系統實時更新,為用戶查詢提供更為準確的信息。

        關鍵詞:J2EE;最短路徑算法;公交查詢

        Design and Realization of Public Transport Inquiry System Based on J2EE
        Abstract
        Urban public transportation is an important part in traffic and transportation domain, and it's also the inevitable result of social economy's development in urban areas. As an important part of urban transportation system, urban public transportation system is acting a key role in human living, in social production and in transportation domain .But the inquiry system of public transportation developments in our country is in a comparatively backward level. The general passengers have less way to obtain the information. In order to solve this kind of problem, an inquiry system of public transport based on J2EE is designed.
        The thesis has introduced the realized functions of entire system in detail. Firstly, the system has realized many inquiry functions. The system can search bus route by the name of business mansion, the number of public transport, ordinary bus station and two arbitrary stations. Secondly, the system uses the shortest path algorithm to find the shortest travel routes between any two stations. Finally, the system provides the functions of consumer message, the bus number managing on the backstage and the consumer managing. The function of consumer message mainly collects suggestions from consumer to modify and perfect the system functions. The function of user managing is to delete user information mainly and revises the fundamental user information. The functions of bus number managing are mainly to add, update and delete the bus number and the station on the backstage. These can enable the system have the quality of real-time updating to provide the accurate information for user.

        Key words:J2EE; Shortest path algorithm; public transport inquiry

        目  錄

        1 引言 1
        1.1 選題背景 1
        1.2 項目的主要研究工作 2
        1.3 開發環境 2
        2 理論基礎 2
        2.1 概念 2
        2.1.1 J2EE的概念 2
        2.1.2 JSP的概念 3
        2.1.3 Java Bean的概念 3
        2.1.4 Java Servlet的概念 3
        2.1.5 Session對象 3
        2.2 J2EE的結構 3
        2.3 J2EE的容器類型 4
        2.4 J2EE的體系與模式 4
        2.4.1 J2EE的體系(分布式計算) 4
        2.4.2 J2EE的模式 4
        3 公交查詢系統功能分析 4
        3.1 公交查詢系統的需求 4
        3.1.1 系統需求描述 4
        3.1.2 系統數據流圖 5
        3.2 公交查詢系統的功能 5
        3.3 公交查詢系統的數據庫設計 6
        3.3.1 E-R圖 6
        3.3.2 數據庫表設計 7
        4 公交查詢系統的設計與實現 9
        4.1 創建管理員登錄的Servlet 9
        4.2 創建用戶登錄的Servlet 11
        4.3 公交系統查詢模塊 12
        4.3.1商廈查詢 12
        4.3.2 車次信息查詢 15
        4.3.3 站點信息查詢 17
        4.3.4 兩個站點間的信息查詢 18
        4.4 公交系統添加模塊 23
        4.4.1 添加車次 23
        4.4.2 添加站點 24
        4.5 公交系統刪除模塊 24
        4.5.1 刪除車次 24
        4.5.2 刪除站點 25
        4.6 公交系統更新模塊 25
        4.7 公交系統留言板模塊 26
        4.7.1 發表留言 26
        4.7.2 查看留言 26
        4.7.3 刪除留言 27
        5 系統測試與分析 27
        結    論 28
        參考文獻 28
        致    謝 29
        聲    明 30


        相關論文
        本論文在計算機論文欄目,由論文格式網整理,轉載請注明來源www.donglienglish.cn,更多論文,請點論文格式范文查看
        上一篇:面向Internet上的CSCW的共享白板.. 下一篇:網上考試及評析系統的設計與實現
        Tags:基于 J2EE 公交 查詢系統 設計 實現 【收藏】 【返回頂部】
        最新文章
        熱門文章
        計算機論文
        推薦文章

        本站部分文章來自網絡,如發現侵犯了您的權益,請聯系指出,本站及時確認刪除 E-mail:349991040@qq.com

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

        Copyright@ 2010-2018 LWGSW.com 論文格式網 版權所有 蜀ICP備09018832號

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

        论文格式网:毕业论文格式范文
        <ul id="kk2ao"><tbody id="kk2ao"></tbody></ul>
        • <kbd id="kk2ao"><center id="kk2ao"></center></kbd>