There are several examples in Java about how to save a value in a properties file - for example:
How to write values in a properties file through java code
https://www.mkyong.com/java/java-properties-file-examples/
You will notice that they all use the "import java.io.FileOutputStream" code, however when I try and use the same code I get this error ....
error: cannot find symbol
import java.io.FileOutputStream;
symbol: class FileOutputStream
location: package java.io
I believe that this is a standard Java library and should be available right? What am I doing wrong?
Thanks