I've just started learning Java after getting the hang of C++, and I'm wondering if there is a way that I can have global constants the same way in C you can have a Header file with a list of constants that you can just include in any class files that need to use them. Right now, in my Java project, I am achieving this effect by using a Java interface with the constants defined as final variables.I've just started learning Java after getting t