Courses
Tutorials
Interview Prep
DSA
Practice Problems
C
C++
Java
Python
JavaScript
Data Science
Machine Learning
Courses
Linux
DevOps
Similar Topics
Web Technologies
32.1K+ articles
DSA
20.4K+ articles
Python
19.6K+ articles
Experiences
15.8K+ articles
Interview Experiences
14.5K+ articles
Java
9.4K+ articles
Misc
7.7K+ articles
Java-Functions
4.2K+ articles
Difference Between
3.1K+ articles
Java - util package
1.6K+ articles
Java-Properties
23 posts
Recent Articles
Difference between .yml and .properties file in Java SpringBoot
Last Updated: 21 January 2026
In Spring Boot applications, configuration files are used to define application-level settings such as server port, database credentials, logging levels, and environment-s...
read more
Misc
Java
Difference Between
Java-Properties
Properties list(PrintWriter) method in Java with Examples
Last Updated: 11 July 2025
The list(PrintWriter) method of Properties class is used to print this Properties list out to the specified output stream, passed as the parameter. This method can be used...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties getOrDefault(key, defaultValue) method in Java with Examples
Last Updated: 11 July 2025
The getOrDefault(key, defaultValue) method of Properties class is used to get the value mapped to this key, passed as the parameter, in this Properties object. This method...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties get(key) method in Java with Examples
Last Updated: 11 July 2025
The get(key) method of Properties class is used to get the value mapped to this key, passed as the parameter, in this Properties object. This method will fetch the corresp...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties hashCode() method in Java with Examples
Last Updated: 11 July 2025
The hashCode() method of Properties class is used to generate a hashCode for the given Properties containing key and values.Syntax: public int hashCode()Parameters: This ...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties getProperty(key) method in Java with Examples
Last Updated: 11 July 2025
The getProperty(key) method of Properties class is used to get the value mapped to this key, passed as the parameter, in this Properties object. This method will fetch the...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties list(PrintStream) method in Java with Examples
Last Updated: 11 July 2025
The list(PrintStream) method of Properties class is used to print this Properties list out to the specified output stream, passed as the parameter. This method can be used...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties isEmpty() method in Java with Examples
Last Updated: 11 July 2025
The isEmpty() method of Properties class is used to check if this Properties object is empty or not.Syntax: public boolean isEmpty()Parameters: This method accepts no para...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties getProperty(key, defaultValue) method in Java with Examples
Last Updated: 11 July 2025
The getProperty(key, defaultValue) method of Properties class is used to get the value mapped to this key, passed as the parameter, in this Properties object. This method ...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties equals(value) method in Java with Examples
Last Updated: 11 July 2025
The equals(value) method of Properties class is used to check for equality between two properties. It verifies whether the elements of one properties object passed as a pa...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties elements() method in Java with Examples
Last Updated: 11 July 2025
The elements() method of Properties class is used to get the enumeration of this Properties object. It can be further used to retrieve the elements sequentially using this...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties entrySet() method in Java with Examples
Last Updated: 11 July 2025
The entrySet() method of Properties class is used to get the Set view of this Properties mappings.Syntax:public SetMap.Entry entrySet()Parameters: This method do not accep...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties forEach(BiConsumer) method in Java with Examples
Last Updated: 11 July 2025
The forEach(BiConsumer) method of Properties class perform the BiConsumer operation on each entry of hashtable until all entries have been processed or the action throws a...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties containsValue(value) method in Java with Examples
Last Updated: 11 July 2025
The containsValue(value) method of Properties class is used to check if this Properties object contains any mapping of this Value. It takes this value to be compared as pa...
read more
Java
Java - util package
Java-Functions
Java-Properties
Properties containsKey(value) method in Java with Examples
Last Updated: 11 July 2025
The containsKey(value) method of Properties class is used to check if this Properties object contains any mapping of this Key for any key present in it. It takes this valu...
read more
Java
Java - util package
Java-Functions
Java-Properties
1
2