alphabetical list of strings in an array

How do I do this please help or I'm going to Fail,thought about running multiple if statements but the code will be too long.or should use a method Help please.
[182 byte] By [BigDave89RSAa] at [2007-11-27 4:51:34]
# 1
You could use the sort method that is available in the API, but I guess you will fail if you do that. You should probably try to implement it yourself, and you would need to use loops in that case. Take a look at for and while. Kaj
kajbja at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...
# 2
no i'll be allowed to use sort any recommendations
BigDave89RSAa at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...
# 3
How about reflection? That might impress your teacher.
petes1234a at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...
# 4
Sorry. I was stung by the sarcasm bug. I'll get over it.
petes1234a at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...
# 5
my real answer: google is your friend. When I did a search on: java "sorting arrays"I got loads of useful tips in the first few results.One of the first was [url= http://www.leepoint.net/notes-java/data/arrays/70sorting.html]this[/url].
petes1234a at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...
# 6
> no i'll be allowed to use sort any recommendationsBut are you allowed to use existing implementations. Sorting using the API is only one method call. Can't become any easier.Kaj
kajbja at 2007-7-12 10:05:19 > top of Java-index,Java Essentials,Java Programming...