There is a project with architecture: 
The resource folder contains the properties file and the DB folder.
In the DB folder there is a file properties.db.
I find the file properties simply:
final Properties properties = new Properties(); properties.load(MyClass.class.getClassLoader().getResourceAsStream("properties")); But I can not find the properties.db file.
What do I need to register to find properties.db ?