Sometimes JavaFX has problems regarding appending. what you can do instead is load the data from the text field and then manually add the new test to the old text, and load this combined text to the text field. Hope this helps, let me know if you still are lost.
Yea that would be possible, you would either need to add the text together in one String before writing to the file, or you can use append mode to append text to a file instead of overwriting every time.
Thank you. Now I know how to da that in my project.
Glad I could help
Here you used append but when I run this code, I can't find old information. What to do now?
Its shows every time to replace the text file.
Sometimes JavaFX has problems regarding appending. what you can do instead is load the data from the text field and then manually add the new test to the old text, and load this combined text to the text field.
Hope this helps, let me know if you still are lost.
thanks, bro help full video ..........
Happy to help :)
Can you please provide source code?
Source code: gist.github.com/Da9el00/f75565592ded943420969a3fbcad4d2a
This is the soruce code for both #16 and #17, because 17 is building upon 16.
@@Randomcode_0 can I use multiple textArea's information in on file?
Yea that would be possible, you would either need to add the text together in one String before writing to the file, or you can use append mode to append text to a file instead of overwriting every time.