compile application using command line

I want to be able to compile a personal profile application using the command line. Up until now I've used an IDE (WSDD) to compile and test my application but I need to be able to compile it using just the command line.Any help on the matter is much appreciated,
[298 byte] By [MBlissa] at [2007-10-3 3:23:54]
# 1
http://java.sun.com/j2me/docs/wtk2.2/docs/UserGuide-html/commandline.html
suparenoa at 2007-7-14 21:16:33 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 2
Thanks for the reply but unfortunately i'm not trying to compile a MIDP application, which is what the link refers to. I did however find out the -bootclasspath arguments i needed.
MBlissa at 2007-7-14 21:16:33 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 3
you need to use -classpath $CVM_HOME/lib/personal.jar *.javaHope this helps.
AsifMohammeda at 2007-7-14 21:16:33 > top of Java-index,Java Mobility Forums,Java ME Technologies...
# 4
javac -bootclasspath \midp\classes filename.java
MadhuCMa at 2007-7-14 21:16:33 > top of Java-index,Java Mobility Forums,Java ME Technologies...