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
You have the correct result. Unfortunately the toString()-method on the array is still the original Object.toString() so the output is somewhat unusable per default but that goes for all arrays.