diff --git a/.idea/runConfigurations.xml b/.idea/runConfigurations.xml deleted file mode 100644 index 797acea..0000000 --- a/.idea/runConfigurations.xml +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - \ No newline at end of file diff --git a/src/GebietsDatei.java b/src/GebietsDatei.java index 36450b8..614d684 100644 --- a/src/GebietsDatei.java +++ b/src/GebietsDatei.java @@ -15,7 +15,9 @@ public class GebietsDatei { try { Files.readAllLines(Paths.get(dateiName)).forEach(line -> { String[] parts = line.split(";"); - gebiete.add(new Gebiet(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), parts[2], Long.parseLong(parts[3]), Integer.parseInt(parts[4]))); + System.out.println(parts[0]); + + gebiete.add(new Gebiet(Integer.parseInt(parts[0]), Integer.parseInt(parts[1]), parts[2], (parts[3].equals("-")) ? 0 : Long.parseLong(parts[3]), (parts[4].equals("-")) ? 0 : Integer.parseInt(parts[4]))); }); } catch (Exception e) { e.printStackTrace();