《C#程序設(shè)計》課程設(shè)計公交路線查詢
《《C#程序設(shè)計》課程設(shè)計公交路線查詢》由會員分享,可在線閱讀,更多相關(guān)《《C#程序設(shè)計》課程設(shè)計公交路線查詢(30頁珍藏版)》請在裝配圖網(wǎng)上搜索。
1、 太湖學(xué)院 《C#程序設(shè)計》課程設(shè)計 題目: 《公交路線查詢》 機 電 學(xué)院 計算機科學(xué)與技術(shù) 專業(yè) 學(xué) 號: 學(xué)生姓名: 班 級: 計科84 成 績: 2012年 1月 ㈠需求分析: 隨著現(xiàn)代社會的發(fā)展,交通也越來越發(fā)達,人們也開始不斷的外出旅游,不管是市內(nèi)還是市外對一個準確明了的交通路線需求越來越大,以前我們只能通過電話咨詢、看地圖、向路人打聽來了解訊息,這不僅浪費精力財力時間,而且極為不方便。在這樣一個需
2、求下,我們所設(shè)計的公交路線查詢系統(tǒng)就產(chǎn)生了很大的價值,它能很方便的查詢到公交路線,準確的告訴你從A到B該怎么去才最為快捷!這也是我們設(shè)計這個系統(tǒng)的初衷! 1.功能需求 首先我們系統(tǒng)最基本要滿足顧客的需求就是公交路線的查詢。但是我們清楚的知道,死的列表將造成許多不便,因為路線會隨著城市建設(shè)而變化,所以我們的路線是可以實時的去更新的,這樣就牽扯到再數(shù)據(jù)庫中的更新、刪除功能,附帶通過報表清楚的顯示出來修改后的內(nèi)容。觸發(fā)器功能實現(xiàn)公交路線中的一些數(shù)值計算,比如幾站路等。我們所要實現(xiàn)的就是站點查詢、換車查詢、線路查詢。 2.數(shù)據(jù)需求 數(shù)據(jù)庫中包含管理者的賬戶密碼。公交路線數(shù)據(jù)(包括起始站到終點站
3、的其間所有站點)。 3.性能需求 客戶需要的是一個快捷準確的查詢系統(tǒng),包括一次轉(zhuǎn)車到達以及二次轉(zhuǎn)車到達,不能有任何差錯。所以關(guān)于線路查詢的C#程序語句要考慮周全不能有任何差池。數(shù)據(jù)庫中數(shù)據(jù)也需要其準確性。 ㈡概要設(shè)計: 設(shè)計思想: 隨著公路規(guī)模的不斷擴大,公交數(shù)量的急劇增加,有關(guān)公交管理的各種信息量也在不斷成倍增長。面對龐大的信息量,就需要有公交信息管理系統(tǒng)來提公交房管理工作的效率。通過這樣的系統(tǒng),我們可以做到信息的規(guī)范管理和快速查詢,從而減少了管理方面的工作量。 目前,我國各省市的公交查詢工作還未實現(xiàn)數(shù)字化。整個過程既浪費能源又浪費資源。最后導(dǎo)致浪費時間,無法
4、按時到達目的地。因此,開發(fā)一個能夠?qū)ψ钚碌墓痪€路進行查詢的信息平臺就顯得尤其重要。所開發(fā)的系統(tǒng)將在一定程度上能夠克服以上的種種缺點,實現(xiàn)各項工作在線完成,為乘客提供一個完全公開、開放、完善的管理平臺,放便了乘客的出行,大大節(jié)省了乘客的寶貴時間。通過這樣的系統(tǒng),我們可以做到信息的規(guī)范管理和快速查詢,實現(xiàn)了公交信息管理的系統(tǒng)化、規(guī)范化和自動化,這樣不僅減少了管理工作量,還提高了查詢效率,降低了查詢成本。 實現(xiàn)模塊: 1. 選擇模塊: using System; using System.Collections.Generic; using System.ComponentModel;
5、 using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace bus { public partial class Form3 : Form { public Form3() { InitializeComponent(); } private void button1_Click(object sender, EventAr
6、gs e) { if (radioButton1.Checked) { Form1 f=new Form1(); f.Show(); this.Hide(); } if(radioButton2.Checked) { Form2 f = new Form2();
7、 f.Show(); this.Hide(); } } private void button2_Click(object sender, EventArgs e) { Application.Exit(); } private void radioButton1_CheckedChanged(object sender, EventArgs e) {
8、} } } 2. 查詢模塊: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; namespace bus { public partial class Form1 : Form { public Form1(
9、) { InitializeComponent(); } public int n = 0; private void button1_Click(object sender, EventArgs e) { string []bus = new string[10]; FileStream fs = new FileStream("C:\\Documents and Settings\\A
10、dministrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read); StreamReader sr = new StreamReader(fs); for (int i = 0; i < bus.Length; i++) { bus[i] = sr.ReadLine(); if (bus[i] == null) {
11、 n++; } } sr.Close(); fs.Close(); if (++n == bus.Length) { MessageBox.Show("文件內(nèi)容為空,請按讀入文件按鈕??!"); } else {
12、 string path = ""; if (textBox1.Text == "" && textBox2.Text == "") { MessageBox.Show("起始站臺和目的站臺不能為空??!"); } else if (textBox1.Text == "") { MessageBox
13、.Show("起始站臺不能為空??!"); } else if (textBox2.Text == "") { MessageBox.Show("目的站臺不能為空??!"); } for (int i = 0; i < bus.Length; i++) { string aa = b
14、us[i]; if (aa != null) { if (aa.IndexOf(textBox1.Text) > 0 && aa.IndexOf(textBox2.Text) > 0) { string[] b = aa.Split(,); path += b[0];
15、 } if (path != "") { textBox3.Text = path; } else { textBox3.Text = "沒有這路公交車,請選擇
16、查詢2,查詢交通路線!!"; } } } } } public string ret(string a, string b) { string ret = ""; string[] a1 = a.Split(,); string[] b1 = b.Split(,); for
17、 (int i =0; i 18、 }
else
{
ret += "," + a1[i];
}
}
}
}
return ret;
}
private void button3_Click(ob 19、ject sender, EventArgs e)
{
string[] bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
for 20、 (int i = 0; i < bus.Length; i++)
{
bus[i] = sr.ReadLine();
}
sr.Close();
fs.Close();
string path = "";
if (textBox1.Text == "" && textBox2.Text == "")
{
21、MessageBox.Show("起始站臺和目的站臺不能為空??!");
}
else if (textBox1.Text == "")
{
MessageBox.Show("起始站臺不能為空?。?);
}
else if (textBox2.Text == "")
{
MessageBox.Show("目的站臺 22、不能為空??!");
}
for (int i = 0; i < bus.Length; i++)
{
string aa = bus[i];
if (aa.IndexOf(textBox1.Text) >= 0)
{
for (int j = 0; j < bus.L 23、ength; j++)
{
if (i != j)
{
string bb = bus[j];
if (bb.IndexOf(textBox2.Text) >= 0)
{
24、 for (int s = 0; s < bus.Length; s++)
{
string cc = bus[s];
if (i != j && j != s && s != i)
25、{
if (ret(aa, cc) != "" && ret(cc, bb) != "")
{
path += aa.Substring(0, 4) + "到" + ret(aa, cc) + "轉(zhuǎn)" + cc.Substring(0, 4) + "到" + ret(cc, bb) + "轉(zhuǎn)" + 26、 bb.Substring(0, 4) + "到" + textBox2.Text;
}
if (path != "")
{
textBox3.Text = path;
27、 }
else
{
textBox3.Text = "轉(zhuǎn)兩次車不能到達,請選擇打的??!";
}
28、 }
}
}
}
}
}
}
}
private void button2 29、_Click(object sender, EventArgs e)
{
string[] bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
30、 for (int i = 0; i < bus.Length; i++)
{
bus[i] = sr.ReadLine();
}
sr.Close();
fs.Close();
string path = "";
if (textBox1.Text == "" && textBox2.Text == "")
{
MessageBox.S 31、how("起始站臺和目的站臺不能為空??!");
}
else if (textBox1.Text == "")
{
MessageBox.Show("起始站臺不能為空??!");
}
else if (textBox2.Text == "")
{
MessageBox.Show("目的站臺不能為空!!");
}
32、 for (int i=0; i 33、 {
string bb = bus[j];
if (bb.IndexOf(textBox2.Text) >= 0)
{
if (ret(aa, bb) != "")
{
path += aa.Substrin 34、g(0, 4) + "到" + ret(aa, bb) + 轉(zhuǎn) + bb.Substring(0, 4) + "到" + textBox2.Text;
}
if (path != "")
{
textBox3.Text = path;
35、 }
else
{
textBox3.Text = "轉(zhuǎn)一次車不能到達,請選擇查詢2,查詢交通路線!!";
}
}
}
}
36、 }
}
}
private void button4_Click(object sender, EventArgs e)
{
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.ReadWrite);
StreamWriter sw 37、= new StreamWriter(fs);
string[] bus = new string[10];
bus[0] = "#001,火車站,吉祥橋,勝利門,五愛北路,梁溪大橋,運河飯店,開源大橋,蠡橋,北橋,稻香新村,中橋,景亭苑,震澤新村,旺山路,蠡湖大橋,蠡湖公園,蠡湖廣場,蠡園,寶界橋,寶界村,黿頭渚";
bus[1] = "#002,梅園公交總站,梅園,開原寺,大渲,公益路,榮巷,張巷,第九人民醫(yī)院,上里東,河埒口";
bus[2] = "#003,梓旺新村,東方名苑,東北塘 38、,錦旺苑,夏氏物流,東風(fēng)橋木材市場,金龍紙品,向陽,廣豐,丁村";
bus[3] = "#004,胡埭停車場,胡埭路,錢胡路,張舍,劉塘村,文良路,歷村,洋溪橋,江南皮件廠";
bus[4] = "#005,無錫動物園,西山,東山,江原醫(yī)院,無錫藝校,開源寺,梅園,梅園公交總站";
bus[5] = "#006,錢橋,楊樹岸,惠錢路,惠泉花園,石門路,嚴家鵬,烈士陵園,鳳翔南路,惠暢里,惠山,龍光路,威孚公司,五愛廣場,西門,復(fù)興路";
bus[6] = "#007,錫山醫(yī)院,錫滬路,市人力 39、資源,長慶路,東林書院,檢察院,三鳳橋,二院,朝陽廣場,文化宮,體育公園,健康橋,梁溪大橋";
bus[7] = "#008,火車站,勝利門,商業(yè)大廈,八百伴,解放東路,風(fēng)雷新村,金海里,敘康里,";
bus[8] = "#009,河埒口,四院,青山灣,青山支路,錫惠公園,吟苑公園,五愛廣場,五愛北路,勝利門,吉祥橋,火車站";
bus[9] = "#010,中橋,景亭苑,震澤新村,旺山路,蠡湖大橋,蠡湖公園,蠡湖廣場,蠡園,寶界橋,寶界村,黿頭渚";
for (int i = 0; i < 40、 bus.Length; i++)
{
sw.WriteLine(bus[i]);
}
sw.Close();
fs.Close();
}
private void button5_Click(object sender, EventArgs e)
{
Form3 f = new Form3();
f.Show();
t 41、his.Hide();
}
private void button6_Click(object sender, EventArgs e)
{
Application.Exit();
}
}
}
3. 修改模塊:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
us 42、ing System.Text;
using System.Windows.Forms;
using System.IO;
namespace bus
{
public partial class Form2 : Form
{
public Form2()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
43、 string[] bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
for (int i = 0; i < bus.Length; i++)
44、 {
bus[i] = sr.ReadLine();
}
sr.Close();
fs.Close();
for (int i = 0; i < bus.Length; i++)
{
string aa = bus[i];
string []a1 =aa.Split(,);
if ( a1[0]== t 45、extBox1.Text)
{
textBox3.Text = bus[i];
break;
}
else
{
MessageBox.Show("輸入的線路不正確??!");
break;
}
}
}
46、 private void button2_Click(object sender, EventArgs e)
{
Form3 f = new Form3();
f.Show();
this.Hide();
}
private void button3_Click(object sender, EventArgs e)
{
Application.Exit();
}
47、 private void button4_Click(object sender, EventArgs e)
{
string[] bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new St 48、reamReader(fs);
for (int i = 0; i < bus.Length; i++)
{
bus[i] = sr.ReadLine();
}
sr.Close();
fs.Close();
for (int i = 0; i < bus.Length; i++)
{
string aa = bus[i];
49、 string[] a1 = aa.Split(,);
if (textBox1.Text == a1[0])
{
bus[i] = textBox3.Text;
}
}
FileStream fst = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt" 50、, FileMode.Create, FileAccess.ReadWrite);
StreamWriter sw = new StreamWriter(fst);
for (int i = 0; i < bus.Length; i++)
{
sw.WriteLine(bus[i]);
}
sw.Close();
fst.Close();
}
}
}
㈢詳 51、細設(shè)計:
(1)設(shè)計說明:
①當(dāng)打開軟件時首先選擇所需功能,代碼如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace bus
{
public partial class Form3 : Form
{
public Form3()
52、
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
if (radioButton1.Checked)
{
Form1 f=new Form1();
f.Show();
this.Hide();
53、
}
if(radioButton2.Checked)
{
Form2 f = new Form2();
f.Show();
this.Hide();
}
}
private void button2_Click(object sender, EventArgs e)
{
Application.Exi 54、t();
}
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
}
}
}
②當(dāng)選擇查詢時,首先寫入文件,然后分別有轉(zhuǎn)一次車查詢和轉(zhuǎn)兩次車查詢,代碼如下:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using 55、 System.Text;
using System.Windows.Forms;
using System.IO;
namespace bus
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
public int n = 0;
private void button1_Click(object sender, 56、EventArgs e)
{
string []bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Settings\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
for (int 57、i = 0; i < bus.Length; i++)
{
bus[i] = sr.ReadLine();
if (bus[i] == null)
{
n++;
}
}
sr.Close();
fs.Close();
if (++n == b 58、us.Length)
{
MessageBox.Show("文件內(nèi)容為空,請按讀入文件按鈕!!");
}
else
{
string path = "";
if (textBox1.Text == "" && textBox2.Text == "")
{
MessageBox. 59、Show("起始站臺和目的站臺不能為空?。?);
}
else if (textBox1.Text == "")
{
MessageBox.Show("起始站臺不能為空??!");
}
else if (textBox2.Text == "")
{
MessageBox.Show( 60、"目的站臺不能為空!!");
}
for (int i = 0; i < bus.Length; i++)
{
string aa = bus[i];
if (aa != null)
{
if (aa.IndexOf(textBox1.Text) > 0 && aa.IndexOf(textB 61、ox2.Text) > 0)
{
string[] b = aa.Split(,);
path += b[0];
}
if (path != "")
{
textBox3.Text = path;
62、
}
else
{
textBox3.Text = "沒有這路公交車,請選擇查詢2,查詢交通路線??!";
}
}
}
}
}
public string ret(string 63、 a, string b)
{
string ret = "";
string[] a1 = a.Split(,);
string[] b1 = b.Split(,);
for (int i =0; i 64、b1[j])
{
if (ret =="")
{
ret = a1[i];
}
else
{
ret += "," + a1[i];
}
65、
}
}
}
return ret;
}
private void button3_Click(object sender, EventArgs e)
{
string[] bus = new string[10];
FileStream fs = new FileStream("C:\\Documents and Setting 66、s\\Administrator\\桌面\\buses\\bus\\MyFile.txt", FileMode.Open, FileAccess.Read);
StreamReader sr = new StreamReader(fs);
for (int i = 0; i < bus.Length; i++)
{
bus[i] = sr.ReadLine();
}
sr.Close();
fs.Close();
string path = "";
if (textBox1.Text == "" && textBox2.Text == "")
{
MessageBox.Show("起始站臺和目的站臺不能為空!!"
- 溫馨提示:
1: 本站所有資源如無特殊說明,都需要本地電腦安裝OFFICE2007和PDF閱讀器。圖紙軟件為CAD,CAXA,PROE,UG,SolidWorks等.壓縮文件請下載最新的WinRAR軟件解壓。
2: 本站的文檔不包含任何第三方提供的附件圖紙等,如果需要附件,請聯(lián)系上傳者。文件的所有權(quán)益歸上傳用戶所有。
3.本站RAR壓縮包中若帶圖紙,網(wǎng)頁內(nèi)容里面會有圖紙預(yù)覽,若沒有圖紙預(yù)覽就沒有圖紙。
4. 未經(jīng)權(quán)益所有人同意不得將文件中的內(nèi)容挪作商業(yè)或盈利用途。
5. 裝配圖網(wǎng)僅提供信息存儲空間,僅對用戶上傳內(nèi)容的表現(xiàn)方式做保護處理,對用戶上傳分享的文檔內(nèi)容本身不做任何修改或編輯,并不能對任何下載內(nèi)容負責(zé)。
6. 下載文件中如有侵權(quán)或不適當(dāng)內(nèi)容,請與我們聯(lián)系,我們立即糾正。
7. 本站不保證下載資源的準確性、安全性和完整性, 同時也不承擔(dān)用戶因使用這些下載資源對自己和他人造成任何形式的傷害或損失。
最新文檔
- 蘇教版五上《小數(shù)乘整數(shù)》ppt課件
- 蘇教版一年級數(shù)學(xué)上冊《數(shù)一數(shù)》ppt課件
- 江南1優(yōu)秀課件
- 提高印字質(zhì)量課件
- 服務(wù)分銷策略課件
- 數(shù)學(xué)必修蘇教版互斥事件課件3(共32張PPT)
- 第三章要素費用的核算PPT優(yōu)秀資料
- 元素的質(zhì)量分數(shù)計算答案
- 圖形的欣賞與設(shè)計
- 八年級下期Uuit10SectionA課件
- 部編七年級語文下冊4孫權(quán)勸學(xué)課件
- 部編一年級語文下冊端午粽課件
- 超市防損的技能課件
- 表彰班會教學(xué)課件教學(xué)課件
- 第17講中考數(shù)學(xué)專題復(fù)習(xí) 函數(shù)的綜合應(yīng)用中考數(shù)學(xué)專題復(fù)習(xí)課件課件各版通用