Re: String[] to String



*RESOLVED*

I am using jsdk 1.4.2, in which there is no method to convert an array
to a string. We have to do it manually.

From v1.5.x onwards, there is a toString() override in
java.utils.Arrays class that does it.

http://java.sun.com/j2se/1.5.0/docs/api/java/util/Arrays.html#toString(java.lang.Object[])

.