Possible Duplicate:
Clearest way to combine two lists into a map (Java)?
Given this:
List<Integer> integers = new ArrayList<Integer>();
List<String> strings = new ArrayList<String>();
strings.add("One");
strings.add("Two");
strings.add("Three");
integers.add(new Integer(1));
integers.add(new Integer(2));
integers.add(new Integer(3));
What is the best way to merge these lists into a map like ["One" => 1, "Two" => 2, "Three"=>3]?
Thanks for any suggestions