Java Properties File – How to Read and Write
In this tutorial you will learn about java properties file and how to perform read and write operations on it. What is properties file? In Java related technologies, properties file is used to store configuration data or settings of application. It has .properties extension. Why we need properties file? It makes application maintenance easier. We can change some information in application by doing changes in properties file. We don’t need to recompile the java source files. Let us
Read more