Home Java SCJP SCWCD Servlet Submit News Contact Us Site Map


Over 500 magazines for free (including Oracle Magazine)!

Yes all of them are FREE. You can subscribe to ALL of them.
Click here to apply today!

Home > Java > Java Articles

Java HashMap Example

import java.util.HashMap;

public class HashMapExample{

public static void main(String[] args) {

HashMap myMap = new HashMap();

map.put(“1”, "A");
map.put(“2”, "B");
map.put(“3”, "C");

String one = (String) map.get(“1”);
System.out.println(one);
}


}

 

<< HashMap Operations


Home Java SCJP SCWCD Servlet Site map