Can you help me sort the list alphabetically
My code
emailList.add(contact.getUserName()); String[] emails = new String[emailList.size()]; emailList.toArray(emails); namesList.add(name); Collections.sort(emailList, new Comparator() { public int compare(Object o1, Object o2) { String name1 = (String) o1; String name2 = (String) o2; return name1.compareToIgnoreCase(name2); } }); System.out.println("namesList.toString() = " + namesList.toString());
source share