Erstelleung Klasse
This commit is contained in:
parent
4bf60ccb90
commit
34346f757b
@ -1,12 +1,28 @@
|
||||
import java.lang.reflect.Array;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
|
||||
public class GebietsDatei {
|
||||
|
||||
public class GebietsDatei extends GebietsListe {
|
||||
private List<Gebiet> gebiete = new ArrayList<>();
|
||||
public String dateiname;
|
||||
|
||||
public GebietsDatei(String dateiname) {
|
||||
this.dateiname = dateiname;
|
||||
}
|
||||
public ArrayList<Gebiet> laden() {
|
||||
try {
|
||||
Path pfad = Paths.get(dateiname);
|
||||
gebiete = new ArrayList<Gebiet>();
|
||||
return gebiete;
|
||||
}
|
||||
catch (IOException e){
|
||||
System.out.println("Die Datei kann nicht gelesen werden");
|
||||
}
|
||||
return gebiete;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user