I want to use .jcall from the rJava package to call a custom java class method.
According to the following example from the rJava-documentation
.jcall("java/lang/System","S","getProperty","os.name")
I tried
.jcall("jrae/src/main/RAEBuilder.java","V","main")
Where "jrae/src/main/RAEBuilder.java" is the path I copied from the eclipse properties of the java class file, "V" represents a void return type and "main" is the method I want to call from the RAEBuilder.java class.
However, the .jcall method returns with
RcallMethod: cannot determine object class
What could be wrong? (please be patient with me, I am a java-novice)