Compare commits
3 Commits
4e2778d2c5
...
f558cb059f
Author | SHA1 | Date | |
---|---|---|---|
f558cb059f | |||
a3aaed397f | |||
4afbedc1a8 |
@ -13,18 +13,29 @@ public class GebietsDatei extends GebietsListe {
|
||||
public GebietsDatei(String dateiname) {
|
||||
this.dateiname = dateiname;
|
||||
}
|
||||
public ArrayList<Gebiet> laden() {
|
||||
|
||||
public void laden() {
|
||||
Path pfad = Paths.get(dateiname);
|
||||
|
||||
try {
|
||||
Path pfad = Paths.get(dateiname);
|
||||
List<String> zeilen = Files.readAllLines(pfad);
|
||||
|
||||
for (zeilen : zeilen){
|
||||
|
||||
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();
|
||||
}
|
||||
catch (IOException e){
|
||||
System.out.println("Die Datei kann nicht gelesen werden");
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public List<Gebiet> getGebiete() {
|
||||
return gebiete;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user