I was using Unix before to compile and edit my Java. In that I have used property files right inside my current working directory where the class file exists. Now i have swi
It should work ok as it is in Unix, if you have properties file in current working directory. Another option would be adding your properties file to the classpath and getting the inputstream using this.getClass().getClassLoader().getResourceAsStream("xxxxx.properties");
More here