Using JavaFX, I have the user input information into text fields. My MainController class allows the user to save that inputted text to a txt file and save it at a given location.
Im wondering if its possible to pass what was entered in that text file into another class so I can parse and have my program use its data.
I used strings and .getText() then used a filewriter and bufferedWriter. Can I get the .getText input into another class?