| Author |
how to sort the order
|
devaraj nara
Greenhorn
Joined: May 02, 2007
Posts: 2
|
|
Hi, I have a collection(vector) containing strings. String is of the format like : 1~bat~34. eg: 1~qual~34 29~qual~39 3~pend~89 4~sub~24 5~notqual~28 Now, I want these things in order. It means sub should be first, then qual,then pend, then notqual. Wanted order is like this : 4~sub~24 then 1~qual~34 then 29~qual~39,then 3~pend~89 then 5~notqual~28. can anyone tell me how to do this.
|
 |
Bear Bibeault
Author and ninkuma
Marshal
Joined: Jan 10, 2002
Posts: 56191
|
|
Please take the time to choose the correct forum for your posts. This forum is for questions on Servlets. This post has been moved to a more appropriate forum.
|
[Smart Questions] [JSP FAQ] [Books by Bear] [Bear's FrontMan] [About Bear]
|
 |
Jesper de Jong
Java Cowboy
Bartender
Joined: Aug 16, 2005
Posts: 12921
|
|
You can use the method sort(List, Comparator) in the class java.util.Collections. The first argument to this method is your Vector, the second is a Comparator object that you have to write which determines the sort order. Look those classes up in the API documentation and write some code. If you get stuck, please post your code here and explain where you get stuck.
|
Java Beginners FAQ - JavaRanch SCJP FAQ - The Java Tutorial - Java SE 7 API documentation
Scala Notes - My blog about Scala
|
 |
 |
|
|
subject: how to sort the order
|
|
|