DZone ForumsDZone Forums  

Go Back   DZone Forums > Community > The DZone Network > Zones
FAQ Members List Calendar Search Today's Posts Mark Forums Read

 
LinkBack Thread Tools Display Modes

Topic: Arrange a List of items in to alphabetical Order
Old 07-09-2008, 01:59 AM   #1 (permalink)
Member
 
Join Date: Jul 2008
Posts: 1
Hi EveryBody,

I have on page .When i click drag drop box in that page there are certain list of items are available. but my requirement is to arrange list of items in to a particular alpha betical oreder.

Technologies used in this project.

core java, servlets, jsp, struts, ejb1.0

Eclipse 2.1.2,Tomcat 4.1.29

Thanks,
Sumanth Reddy
+919885378878
kotireddy.sumanth is offline   Reply /w Quote -


Old 09-17-2008, 05:10 AM   #2 (permalink)
Member
 
Join Date: Jan 2008
Posts: 25
It should be as simple as the following :

Vector v = new Vector();
v.add("three");
v.add("one");
v.add("two");
Collections.sort(v);
jsugrue is offline   Reply /w Quote -


Thread Tools
Display Modes



All times are GMT -5. The time now is 02:56 AM.