I have a file I’m using to hold system information that my program needs on execution.
The program will read from it and write to it periodically. How do I do this? Among other problems, I’m having trouble with paths
Example
How do I read/write to this properites file if deploying application as runnable jar
You can’t write to a file that exists as part of a ZIP file… it does not exist as a file on the filesystem.
Considered the Preferences API?