I coded a simple class: test and compiled it and put it in th
'D:\Dropbox\projects\ICPR2013\code\java\union_find'.
Code:-
public class test {
public test() {
System.out.printf("hello world!");
}
}
And then I use the following code to bring the defined class to the Java class path. I also use javaclasspath
to make sure that the folder including 'test' class is added to the Java class path.
javaaddpath('D:\Dropbox\projects\ICPR2013\code\java\union_find');
But when I use x = javaObjectEDT('test');
to call the 'test' class, it gives me the following error: No class test can be located on Java class path