Sort a list with element still in first position
- by Mercer
I have a String list:
List<String> listString = new ArrayList<String>();
listString.add("faq");
listString.add("general");
listString.add("contact");
I do some processing on the list and I want to sort this list but I want "general" still to be in first position.
Thx ;)