-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathUlasimTuru.java
169 lines (151 loc) · 4.99 KB
/
UlasimTuru.java
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
import java.io.*;
import java.util.ArrayList;
/**
*
* @author Gökçe Demir
*/
enum UlasimTipi {
havayolu,
demiryolu,
karayolu,
denizyolu
}
public class UlasimTuru
{
/**
* composition has-a relationship
*/
protected Ulasim ulasim;
ArrayList<Ulasim> ulasimTipleri;
protected KaraYolu karayolu;
protected HavaYolu havayolu;
protected DemirYolu demiryolu;
protected DenizYolu denizyolu;
/**
*
*/
public UlasimTuru()
{
this.ulasimTipleri = new ArrayList();
karayolu = new KaraYolu();
havayolu = new HavaYolu();
demiryolu = new DemirYolu();
denizyolu = new DenizYolu();
}
public void main() throws IOException {
UlasimTuru obj = new UlasimTuru();
obj.welcomeMessage();
}
/**
*
* @throws IOException
*/
public void welcomeMessage() throws IOException
{
readFromFile();
System.out.println("=================================================================================\n");
System.out.println(" Konaklama menüsüne hoşgeldiniz. \n");
System.out.println("=================================================================================\n");
System.out.println("0- ANKARA\n" +
"1- ANTALYA\n" +
"2- BOLU\n" +
"3- BURSA\n" +
"4- GAZİANTEP\n" +
"5- İSTANBUL\n" +
"6- İZMİR\n" +
"7- MUĞLA\n" +
"8- NEVŞEHİR\n" +
"9- TRABZON\n");
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int i=0, flag =0;
String choice;
do{
System.out.println("Gitmek istediğiniz şehri şeçiniz: ");
i=0; flag=0;
try{
choice = reader.readLine();
i = Integer.parseInt(choice);
}catch(NumberFormatException e) {
System.out.println("Yanlış girdiniz. Lütfen tekrar deneyiniz!");
flag=-1;
}
}while(i<0 || i>9 || flag==-1);
UlasimTipi rVal = printMenu(ulasimTipleri.get(i));
System.out.println(rVal);
if("havayolu".equals(rVal.toString()))
havayolu.menu();
else if("denizyolu".equals(rVal.toString()))
denizyolu.getMenu();
else if("demiryolu".equals(rVal.toString()))
demiryolu.getMenu();
else if("karayolu".equals(rVal.toString()))
karayolu.menu();
//once finished
}
/**
*
* @param obj
* @return
*/
protected UlasimTipi printMenu(Ulasim obj)
{
int i=0;
while(i < 4)
{
String name = obj.ulasimTipi[i];
if( (name.compareTo("null")) != 0)
System.out.printf("%d- %s\n", i, name);
++i;
}
BufferedReader reader = new BufferedReader(new InputStreamReader(System.in));
int n=0, flag =0;
String choice;
do{
System.out.println("Hangi ulaşım türünü tercih edersiniz: ");
n=0; flag=0;
try{
choice = reader.readLine();
n = Integer.parseInt(choice);
}catch(NumberFormatException e) {
System.out.println("Yanlış girdiniz. Lütfen tekrar deneyiniz!");
flag=-1;
} catch (IOException e) {
e.printStackTrace();
}
}while(n<0 || n>3 || flag==-1);
switch (n) {
case 0:
return UlasimTipi.havayolu;
case 1:
return UlasimTipi.demiryolu;
case 2:
return UlasimTipi.karayolu;
case 3:
return UlasimTipi.denizyolu;
default:
break;
}
return null;
}
/**
* @throws java.io.FileNotFoundException
*/
public void readFromFile() throws FileNotFoundException, IOException
{
FileReader reader = new FileReader("sehirler.csv");
BufferedReader buffReader = new BufferedReader(reader);
String readFile; //read line by line file
int i = 0;
while((readFile = buffReader.readLine()) != null)
{
this.ulasim = new Ulasim();
String[] record = readFile.split(",");
ulasim.sehir.setSehirAdi(record[0]);
ulasim.ulasimTipi[0] = record[1];
ulasim.ulasimTipi[1] = record[2];
ulasim.ulasimTipi[2] = record[3];
ulasim.ulasimTipi[3] = record[4];
ulasimTipleri.add(ulasim);
}
}
}