当 运行 代码两次时,JPype 将无法正确编译

JPype won't compile properly when run the code twice

我的代码:

jarLocation = "C:/Users/LahiruGunawardhana/Desktop/New folder/info/infodynamics.jar"
# Start the JVM (add the "-Xmx" option with say 1024M if you get crashes due to not enough memory space)

jpype.startJVM(jpype.getDefaultJVMPath(), "-ea", "-Djava.class.path=" + jarLocation,"-Xmx256m")

teCalcClass = jpype.JPackage("infodynamics.measures.discrete").TransferEntropyCalculatorDiscrete
teCalc = teCalcClass(2,1)
teCalc.initialise()

noOfEdges=0
for i in range(0,N-1):
  for j in range(i+1,N):
   # print(i,"-->",j)
    if(nodes_connectivity(j,i) | nodes_connectivity(i,j)):

     sss = [int(i) for i in SsourceArray]
     ddd = [int(i) for i in DdestArray]
     teCalc.addObservations(sss, ddd)
     e=teCalc.computeAverageLocalOfObservations()

jpype.shutdownJVM()

对于这段代码,我只获得了一次值。当我第二次 运行 这段代码时,我收到一条错误消息:

_jpype.startup(jvm, tuple(args), True)

OSError: JVM is already started

不知何故,当我为每个步骤重新启动 python 控制台时,它会给出值。

startJVM() 之前检查 isJVMStarted() 所以它会是这样的:

if jpype.isJVMStarted():
    return

jpype.startJVM(jpype.getDefaultJVMPath(), "-ea", "-Djava.class.path=" + jarLocation,"-Xmx256m")

因此,如果您 运行 两次并且 JVM 正在 运行ning 此代码将避免再次初始化它