diff --git a/src/main/java/Notizbuch.java b/src/main/java/Notizbuch.java index 83510ee..8c467d2 100644 --- a/src/main/java/Notizbuch.java +++ b/src/main/java/Notizbuch.java @@ -58,6 +58,15 @@ public class Notizbuch extends JFrame implements ActionListener { } } private void loadNote() { - + try (BufferedReader reader = new BufferedReader(new FileReader("notizen.txt"))) { + StringBuilder noteText = new StringBuilder(); + String line; + while ((line = reader.readLine()) != null) { + + } + + } catch (IOException e) { + + } + } } -} \ No newline at end of file