Get Keys from Map in Java
In this example, We will show you simple program about, How to get keys from map in Java. The example has been tested and shared in the same post.
Example Program
package com.dineshkrish; import java.util.Map; import java.util.Set; import java.util.TreeMap; /** * * @author Dinesh Krishnan * */ public class GetKeys { public static void main(String[] args) { // defining map object Map<Integer, String> map = new TreeMap<Integer, String>(); // adding elements to map map.put(1, "One"); map.put(2, "Two"); map.put(3, "Three"); map.put(4, "Four"); map.put(5, "Five"); map.put(6, "Six"); map.put(7, "Seven"); map.put(8, "Eight"); map.put(9, "Nine"); map.put(10, "Ten"); // getting only keys form map Set<Integer> keys = map.keySet(); // printing the set of keys System.out.println(keys); } }
Output
[1, 2, 3, 4, 5, 6, 7, 8, 9, 10]
References
1. Java Set Interface
2. Java Map Interface
3. Java TreeMap Class
4. Java Map keySet() method
More from my site

Hello, folks, I am a founder of idineshkrishnan.com. I love open source technologies, If you find my tutorials are useful, please consider making donations to these charities.
No responses yet