I'm using some Oracle API with Jython2.5. Once of the methods returns:
array(java.lang.String)
I would like to convert this to a python list, with strings as the elements in the list. e.g.
['some', 'strings']
I'm not sure how to do this, or if there's a simple method in the java.lang or java.utils library I can use for the conversion.
method GetGroupLists()
You may use "tolist" on an array to convert it to a list:
grouplist = GetGroupList().tolist()