Mar 31, 2009 | IT Development
You’ll often want to configure parameters in a properties file and read this into a class. config.properties: value.a=orange value.b=apple If you’re simply loading a file in a java program you can use: Properties props = new Properties(); props.load(new...