Hello Everyone !
I want to run a java program on a server...
if i create a HelloWorld.java
it is comipled and run without problems
But if i want ro run my programm that has 2 classes and a jar file (created in Eclipse from a dosen of packages)javac HelloWorld.java java HelloWorld
the compilation doesn't throw anything but when i try to run it its throwing java.lang.NoClassDefFoundError
the way i compile and run is as follows:
javac -classpath ffann.jar *.java java -classpath ffann.jar MyClass
Any Help is appreciated...!!!