1
Crea tu clase básica , como se muestra en el siguiente ejemplo :
java.util.HashMap importación ;
clase
stringmap {
public static void main ( String [] args ) { } }
2
Declarar un objeto HashMap dentro de la función "main ":
Hashmap hm = new HashMap ();
3
crear dos matrices de objetos de cadena en la función "main " :
String [ ] lista = new String [ 20 ] ; cuerdas [ ] list2 = new String [ 20 ] ;
4
mapa un objeto String en la matriz dentro del objeto HashMap :
hm.put ( " Asignado " , list) ; hm.put ( " Mapped2 " , list2 ) ;