I am trying to call java class from a jar file in python. I've see people talking about programs like Jython, Py4j, Jpype, etc, but I am hoping for an easier way other than spend lots of time to study a new program. I am new to programming. Thanks.
Briefly, here is what I want to accompolish. Say a jar file called 'Converter.jar'. It has a function 'parse' in a class 'Handler'. How can I call the jar file to realize something like Converter.Handler.parse('my file')?