Read map by Map.Entry in Java
Description
The following code shows how to read map by Map.Entry.
Example
//from w w w . jav a 2 s . c o m
import java.util.Iterator;
import java.util.Map;
import java.util.Properties;
public class Main {
public static void main(String[] a) {
Properties props = System.getProperties();
Iterator iter = props.entrySet().iterator();
while (iter.hasNext()) {
Map.Entry entry = (Map.Entry) iter.next();
System.out.println(entry.getKey() + " -- " + entry.getValue());
}
}
}
The code above generates the following result.