Another update, almost ending year 2014, you can do it with Java 8 too:
ArrayList arrayList = Stream.of(myArray).collect(Collectors.toCollection(ArrayList::new));
A few characters would be saved, if this could be just a List
List list = Stream.of(myArray).collect(Collectors.toList());