int length = Array.getLength(value);String[] newarray = new String[length];for (int i = 0; i < length; i++) { newarray[i] = String.valueOf(Array.get(value, i));}for(String string : newarray){ textValue = textValue + string;}