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) {
|
public GebietsDatei(String dateiname) {
|
||||||
this.dateiname = dateiname;
|
this.dateiname = dateiname;
|
||||||
}
|
}
|
||||||
|
public ArrayList<Gebiet> laden() {
|
||||||
public void laden() {
|
|
||||||
Path pfad = Paths.get(dateiname);
|
|
||||||
|
|
||||||
try {
|
try {
|
||||||
|
Path pfad = Paths.get(dateiname);
|
||||||
List<String> zeilen = Files.readAllLines(pfad);
|
List<String> zeilen = Files.readAllLines(pfad);
|
||||||
for (int i = 0; i < zeilen.size(); i++) {
|
|
||||||
String[] teile = zeilen.get(i).split(";");
|
for (zeilen : zeilen){
|
||||||
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();
|
|
||||||
}
|
}
|
||||||
|
catch (IOException e){
|
||||||
}
|
System.out.println("Die Datei kann nicht gelesen werden");
|
||||||
|
}
|
||||||
public List<Gebiet> getGebiete() {
|
|
||||||
return gebiete;
|
return gebiete;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user