From Sun\'s Java Tutorial, I would have thought this code would convert a set into an array.
import java.util.*; public class Blagh { public static void mai
As dfa mentioned, you can just replace:
System.out.println(array);
with...
System.out.println(Arrays.toString(array));