I use the following code to convert an Object array to a String array :
Object Object_Arr[]=new Obj[100];
String String_Arr[]=new String[Object_Arr.length];
for (int i=0;i<String_Arr.length;i++) String_Arr[i]=Object_Arr[i].toString();
But I wonder if there is another way to do this?