Erstelleung Klasse
This commit is contained in:
parent
becadc63be
commit
d6685d8020
@ -1,4 +1,5 @@
|
|||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
import java.nio.file.Files;
|
||||||
import java.nio.file.Path;
|
import java.nio.file.Path;
|
||||||
import java.nio.file.Paths;
|
import java.nio.file.Paths;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
@ -15,8 +16,11 @@ public class GebietsDatei extends GebietsListe {
|
|||||||
public ArrayList<Gebiet> laden() {
|
public ArrayList<Gebiet> laden() {
|
||||||
try {
|
try {
|
||||||
Path pfad = Paths.get(dateiname);
|
Path pfad = Paths.get(dateiname);
|
||||||
gebiete = new ArrayList<Gebiet>();
|
List<String> zeilen = Files.readAllLines(pfad);
|
||||||
return gebiete;
|
|
||||||
|
for (zeilen : zeilen){
|
||||||
|
|
||||||
|
}
|
||||||
}
|
}
|
||||||
catch (IOException e){
|
catch (IOException e){
|
||||||
System.out.println("Die Datei kann nicht gelesen werden");
|
System.out.println("Die Datei kann nicht gelesen werden");
|
||||||
|
Loading…
Reference in New Issue
Block a user