It's because the path is wrong. If you put the property file like this
properties.load(new FileInputStream("Config.properties"));
That actually means the location of the properties file is in
System.getProperty("user.dir")/Config.properties, which is not the place where you put your properties file because you put the Config.properties in the src directory.
Probably the best way is to either specify the property file path in the System property or you can also put it in the classpath and scan for that file.
If you want to have a quick hack to see if your program can read the properties file, create the Config.properties in your project directory. Go to the Files tab and create it in the same level as build.xml.
Hope this helps
