package org.kodejava.util;
import java.util.Properties;
import java.util.Map;
import java.util.HashMap;
import java.util.Set;
public class PropertiesToMap {
public static void main(String[] args) {
// Create a new instance of Properties.
Properties properties = new Properties();
// Populate properties with a dummy application information
properties.setProperty("app.name", "HTML Designer");
properties.setProperty("app.version", "1.0");
properties.setProperty("app.vendor", "HTML Designer Inc");
// Create a new HashMap and pass an instance of Properties. Properties
// is an implementation of a Map which keys and values stored as in a
// String.
Map<Object, Object> map = new HashMap<>(properties);
// Get the entry set of the Map and print it out.
Set<Map.Entry<Object, Object>> propertySet = map.entrySet();
for (Map.Entry<Object, Object> entry : propertySet) {
System.out.printf("%s = %s%n", entry.getKey(), entry.getValue());
}
}
}
The output of the code snippet above:
app.vendor = HTML Designer Inc
app.name = HTML Designer
app.version = 1.0
Latest posts by Wayan (see all)
- How do I split large excel file into multiple smaller files? - April 15, 2023
- How do I get the number of processors available to the JVM? - March 29, 2023
- How do I show Spring transaction in log / console? - March 29, 2023