When I run test.class I get the following error:
Exception in thread "main" java.lang.NoSuchMethodError: ml.Temp.<init>(Ljava/lang/String;II)V
at test.main(test.java:11)
And here is the code for test.java
import java.io.*;
import ml.*;
class test
{
public static void main(String[] args) throws FileNotFoundException, IOException
{
String filename = "input";
Temp id = new Temp(filename, 6, 100);
id.someFunction();
}
}
Essentially I have a jar file containing Temp.class (Temp is a library file that I wrote and which is under the ml package). Temp has a constructor which takes these three arguments and a public someFunction.
Not sure if this helps, but I included the classpath of the jar file during the compilation. When I include the classpath of the jar file during running of test.class I get the following
Exception in thread "main" java.lang.NoClassDefFoundError: test
Caused by: java.lang.ClassNotFoundException: test
at java.net.URLClassLoader$1.run(URLClassLoader.java:217)
at java.security.AccessController.doPrivileged(Native Method)
at java.net.URLClassLoader.findClass(URLClassLoader.java:205)
at java.lang.ClassLoader.loadClass(ClassLoader.java:321)
at sun.misc.Launcher$AppClassLoader.loadClass(Launcher.java:294)
at java.lang.ClassLoader.loadClass(ClassLoader.java:266)
Could not find the main class: test. Program will exit.
EDIT:
If it helps I compiled as follows (ml.jar and test.java are in the same directory)
javac -cp ml.jar test.java