DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
Convert Array To Java.util.List
Object[] array = new Object[]{"12","23","34"}; java.util.List list = Arrays.asList(array);