In this post, we will learn how to load property file in java. Properties file is used to store and retrieve values from file.
It is stored as key and value pair. Below is an sample property file
database.properties
Read properties from absolute path
Output
Read properties from class path
Please make sure you have database.properties in class path. else you will get Please check the file present in classpath
Syntax
Output
Print all the values from property file
Syntax
Example
Output
Github
https://github.com/rkumar9090/BeginnersBug/blob/master/BegineersBug/src/com/geeks/example/LoadProperty.java
https://github.com/rkumar9090/BeginnersBug/blob/master/BegineersBug/src/com/geeks/example/LoadPropertyFromClassPath.java
https://github.com/rkumar9090/BeginnersBug/blob/master/BegineersBug/src/com/geeks/example/PrintPropertis.java
Related Articles
how to read a file from java with example
delete a file from java code