I am trying to load JAR file to my python program and use the jar classes and functions. I'm using:
- Java 1.8.0_311 32bit
- Python 3.8.10 64bit
my code looks like:
import jpype
import jpype.imports
from jpype.types import *
classPath = "-Djava.class.path='assets/JAR.jar'"
javaClass = jpype.startJVM(jpype.getDefaultJVMPath(), classPath)
i got an exception:
jpype._jvmfinder.JVMNotSupportedException: JVM mismatch, python is 64 bit and JVM is 32 bit.
well its pretty obvious that the exception is the difference between python's and java's enviroments.
Does it have a workaround?
You have two options: