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
I don't think you have misunderstood anything; the code should work. The array, however, is not smart enough to print its contents in the toString method, so you'll have to print the contents with
for(String s : array) println(s);
or something like that.