http://java.sun.com/docs/books/tutorial/collections/index.html
Demo:
import java.util.*;
public class MapExample {
public static void main(String[] args) {
Map < String, Object[] > m = new HashMap < String, Object[] > ();
Object[] stuff = {"Hello", "World"};
m.put("greeting", stuff);
Object[] back = m.get("greeting");
for(Object x : back) {
System.out.format("%s ", x);
}
System.out.println();
}
}
If you are new to Java, I think you may want to find a more basic solution.
What is your goal? What are you trying to do? Explain. Give details.