Reading from a file...
Hello!
I've an application which has a class
com.mycomp.mypack.Utils
In this class I put something like this
FileInputStream in =new FileInputStream
("app.properties");
The properties file is located directly under /src folder
I got an exception: no such file or folder
How should I call the FileInputStream to fix this?
How can I obtain the absolute path of app.properties file?
Thank you very much
With best regards,
S

