Hi,
So far Jep has been very good at automatically converting between Python & Java types for me. Now I'm trying to call a Java function which expects as an argument a String[]. In Python I am giving it a list of strs, however I get the following error
TypeError: Error converting parameter 2: Expected [Ljava.lang.String; but received a list.
I had hoped Jep would automatically detect the list contained strings and convert it to an array of Java strings. I know this is complicated by the fact a list in Python need not contain entries with the same data type. (Going in the other direction works fine)
Are there plans to implement this?
How can I work around this?
Thanks,
Dan