I am using jpype with Python 2.7 (jpype distribution from the university of california) and I'm trying to use a Java class from a jar file.
It works fine if I start the JVM with
startJVM(getDefaultJVMPath(), "-ea", "-Djava.class.path=D:/jmf.jar")
However, if I am using
startJVM(getDefaultJVMPath(), "-ea", "-cp", "D:/jmf.jar")
or
startJVM(getDefaultJVMPath(), "-ea", "-cp D:/jmf.jar")
the classes from that jar are not found... I also tried setting the classpath with
set CLASSPATH=".;D:\jmf.jar"
which didn't work neither.
What is more, using jars which include other jars does not seem to work. Is this a problem with my distribution or is this a general problem with JPype?