I have an application that uses a properties file that was added by hand at the /project/bin folder (Eclipse project). The application locates the file using:
this.getClass().getClassLoader().getResourceAsStream("filename.properties")
Now I want to add this file in Eclipse, so it's actually part of the project. In which directory should I create the file and how can I make sure the application will find it?
Thanks.