Lots of applications that we use today can be changed to a users needs in some way.
My goal is as user-friendly application as possible so I want to add a possibility to specify settings like a programs size, log file location, etc.
But how should I actually implement it in Java code?
My current idea is just creating a class that loads these settings by setting some static fields. But for some reason, it feels not right...
What are common ways for this problem? Please, share you experience and knowledge!