I'm getting a list of strings from python code and need to read it in Java. When trying to read it, i get the hashCode
[Ljava.lang.Object;@7cf1bb78
I want to read the values in a list. In python my return is something like
return SUCCESS(OK, params={'data':nameList()})
How would I read this in Java and print the contents not the hashCode. Currently I'm doing like
Object getNames = new Object();
getName = getNameList(); // This is thru Apache XML RPC Client
System.out.println(getName);
Any help or suggestions?