How to solve the error of debugging jpype code segment with pycharm?

such as the title, the development tool pycharm,python version 3.6 jpype0.6.3, the system win7.
problem description: an error has been reported when debugging code snippets about jpype with pycharm, and the next step cannot be taken. Then it is strange that if you do not debug and run it directly, it will run normally without any error messages. How to solve it? It"s been bothering me for a long time. Thank you.
clipboard.png

clipboard.png

file_object = open("src1.java")  -sharp 
try:
    all_the_text = file_object.read()
finally:
    file_object.close()

jvmPath = getDefaultJVMPath()
startJVM(jvmPath, "-ea",
                 "-Djava.class.path=F:/JavaTest/out/artifacts/ast_jar/ast.jar")
split_class = JClass("SplitSrc")
sp=split_class()
sp.split(all_the_text)
abc=sp.getMBody_Classes()
Nov.09,2021

is usually caused by an error in the jvm path. I use
startJVM (jpype.getDefaultJVMPath (), "- ea")
java.lang.System.out.println ("hello World")
to report an error, and
startJVM ("C:/Program Files (x86) / Java/jdk1.7.0_15/jre/bin/client/jvm.dll", "- ea")
can print hello World normally.

MySQL Query : SELECT * FROM `codeshelper`.`v9_news` WHERE status=99 AND catid='6' ORDER BY rand() LIMIT 5
MySQL Error : Disk full (/tmp/#sql-temptable-64f5-16de450-88db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
MySQL Errno : 1021
Message : Disk full (/tmp/#sql-temptable-64f5-16de450-88db.MAI); waiting for someone to free some space... (errno: 28 "No space left on device")
Need Help?