On 6/20/05, skn <[EMAIL PROTECTED]> wrote:
> Hello,
> 
> I have written a very simple java class file, which invokes a Python script
> using JEP.
. . .
> Now inside this Python script I want to make Java calls using JPype.

I am not familiar with either Jepp or JPype, but I spotted this
snippet on Jepp page (http://jepp.sourceforge.net/):

import jep
FileInputStream = jep.findClass('java.io.FileInputStream')
try:
    fin = FileInputStream('adsf')
except jep.FileNotFoundException:
    print 'Invalid file'

Are you sure you need to call JPype?

- kv
-- 
http://mail.python.org/mailman/listinfo/python-list

Reply via email to