Java Map.Entry.getValue()
Syntax
Map.Entry.getValue() has the following syntax.
V getValue()
Example
In the following code shows how to use Map.Entry.getValue() method.
import java.util.Iterator;
import java.util.Map;
/*from ww w .j a va 2 s .c om*/
public class Main {
public static void main(String args[]) {
System.out.println("PATH = " + System.getenv("PATH"));
Map<String,String> env = System.getenv();
for (Iterator<Map.Entry<String,String>> it = env.entrySet().iterator(); it.hasNext();) {
Map.Entry<String,String> entry = it.next();
System.out.println(entry.getKey() + " = " + entry.getValue());
}
}
}
The code above generates the following result.
Home »
Java Tutorial »
java.util »
Java Tutorial »
java.util »