|
From: Ype K. <yk...@xs...> - 2001-09-04 17:30:36
|
>Hi, >I am using jython to test my java application. I would to know how to do the >following > >1.) I have a java method which returns an int array.(public int[] read()) >How to use this method in jpython. Say I am trying to do something like this > int [] r = read() >print r Have a look at http://www.jython.org/docs/usejava.html and look for the Foo[] return value. Good luck, Ype |