This repository has been archived by the owner on Jul 15, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
PersonenVerwaltung_Vorlage.java
162 lines (141 loc) · 5.23 KB
/
PersonenVerwaltung_Vorlage.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
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStreamReader;
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
class Person {
String vorname="";
String nachname="";
String adresse="";
String tel="";
}
/**
*
* @author
*/
public class PersonenVerwaltung_E3it1_G1 {
Person arrPer[] = new Person[10];
int index = -1;
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
PersonenVerwaltung_E3it1_G1 p = new PersonenVerwaltung_E3it1_G1();
// Objekt zum Zugriff auf das Terminal
BufferedReader input = new BufferedReader(
new InputStreamReader( System.in ) );
try {
String tmp = "";
do {
if( p.index < 9 ) {
p.index++;
p.arrPer[p.index] = new Person();
System.out.println("Bitte einen Vornamen eingeben: ");
// Vorname einlesen
p.arrPer[p.index].vorname = input.readLine();
System.out.println("Bitte einen Nachnamen eingeben: ");
// Vorname einlesen
p.arrPer[p.index].nachname = input.readLine();
System.out.println("Bitte eine Adresse eingeben: ");
// Vorname einlesen
p.arrPer[p.index].adresse = input.readLine();
System.out.println("Bitte eine Telefonnummer eingeben: ");
// Vorname einlesen
p.arrPer[p.index].tel = input.readLine();
System.out.println("Weitere Personen einlesen (ja / nein) ");
// Vorname einlesen
tmp = input.readLine();
} else {
System.out.println("Es können keine Personen mehr erzeugt werden");
tmp = "nein";
}
} while ( tmp.compareToIgnoreCase("ja") == 0 );
} catch(IOException e) {
System.out.println(e.getMessage());
} finally {
if( input != null){
try {
input.close();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
}
FileWriter f = null;
try {
// Datei speichern
f = new FileWriter("personen.txt");
for( int i=0; i<=p.index; i++){
f.write("[Person]\n");
f.write("Vorname: "+p.arrPer[i].vorname +"\n");
f.write("Nachname: "+p.arrPer[i].nachname +"\n");
f.write("Adresse: "+p.arrPer[i].adresse +"\n");
f.write("Tel: "+p.arrPer[i].tel +"\n\n");
}
} catch(IOException e) {
System.out.println(e.getMessage());
} finally {
if( f != null){
try {
f.close();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
}
p.index = -1;
// Einlesen der Datei
BufferedReader fr = null;
try {
fr = new BufferedReader(
new FileReader("personen.txt") );
String tmp;
while( (tmp = fr.readLine()) != null) {
if( tmp.compareToIgnoreCase("[Person]") == 0) {
if( p.index < 9 ) {
p.index++;
p.arrPer[p.index] = new Person();
}
} else {
String[] arrStr = tmp.split(":",2);
switch( arrStr[0] ) {
case "Vorname":
p.arrPer[p.index].vorname = arrStr[1].trim();
break;
case "Nachname":
p.arrPer[p.index].nachname = arrStr[1].trim();
break;
case "Adresse":
p.arrPer[p.index].adresse = arrStr[1].trim();
break;
case "Tel":
p.arrPer[p.index].tel = arrStr[1].trim();
break;
}
}
}
} catch(IOException e) {
System.out.println(e.getMessage());
} finally {
if( fr != null){
try {
fr.close();
} catch(IOException e) {
System.out.println(e.getMessage());
}
}
}
for( int i=0; i<=p.index; i++){
System.out.println("\nPerson:");
System.out.println("Vorname: "+p.arrPer[i].vorname);
System.out.println("Nachname: "+p.arrPer[i].nachname);
System.out.println("Adresse: "+p.arrPer[i].adresse);
System.out.println("Tel: "+p.arrPer[i].tel);
}
}
}