Re: Calling Java Class from python

2008-04-20 Thread Gabriel Genellina
En Wed, 16 Apr 2008 07:37:55 -0300, Good Z <[EMAIL PROTECTED]> escribió: > We have developed a website in python and we need to integrate few features > of third party website. They have provided us Base64EncoderDecoder Java Class > and would like us to use it to encode the data before sending i

Re: Calling Java Class from python

2008-04-17 Thread Ben Kaplan
If you need to explicitly call a method and get the results, AFAIK, the only way to do it is to use Jython, a version of Python written in java. If you can do everything you need from the command line, then you can just use subprocess.Popen to run it. Here is the article on how to run java files