I am not able to load the properties file into a java file. getting file not found exception. Can you please help here.
Java file location: classes/com/my/location/for/javabased/utilities/convertor/servlet/GetProp.java
Properties file location: classes/com/my/property/properties/Config.properties
My code:
Properties inputParams = new Properties();
FileInputStream in = new FileInputStream("classes/com/my/property/properties/Config.properties");
inputParams.load(in);
in.close();
Getting File not found exception