How to Load Properties File in Java
Properties file is text file commonly used to store configuration data in Java programs. Each line in the properties file represents a property with name and value separated by an equal sign. Usually properties files are saved with the extension .properties. We will creating and loading the sample properties file given below. It contains sample […]