Compare commits
No commits in common. "f558cb059fbbe783e018579e1924e898c611667e" and "4e2778d2c5f863fdffa9622c81e55d5f0a7b2038" have entirely different histories.
f558cb059f
...
4e2778d2c5
@ -13,29 +13,18 @@ public class GebietsDatei extends GebietsListe {
|
||||
public GebietsDatei(String dateiname) {
|
||||
this.dateiname = dateiname;
|
||||
}
|
||||
|
||||
public void laden() {
|
||||
Path pfad = Paths.get(dateiname);
|
||||
|
||||
public ArrayList<Gebiet> laden() {
|
||||
try {
|
||||
Path pfad = Paths.get(dateiname);
|
||||
List<String> zeilen = Files.readAllLines(pfad);
|
||||
for (int i = 0; i < zeilen.size(); i++) {
|
||||
String[] teile = zeilen.get(i).split(";");
|
||||
int jahr = Integer.parseInt(teile[0]);
|
||||
int schlüssel = Integer.parseInt(teile[1]);
|
||||
String name = teile[2];
|
||||
int gesamtEinkommen = Integer.parseInt(teile[3]);
|
||||
int durchsEinkommen = Integer.parseInt(teile[4]);
|
||||
gebiete.add(new Gebiet(jahr, schlüssel, name, gesamtEinkommen, durchsEinkommen));
|
||||
}
|
||||
|
||||
} catch (IOException e) {
|
||||
e.printStackTrace();
|
||||
}
|
||||
for (zeilen : zeilen){
|
||||
|
||||
}
|
||||
|
||||
public List<Gebiet> getGebiete() {
|
||||
}
|
||||
catch (IOException e){
|
||||
System.out.println("Die Datei kann nicht gelesen werden");
|
||||
}
|
||||
return gebiete;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user