How to convert array of Objects into array of Strings?
Hi,
I have an array which is type of Object and it's contents are Strings! I want to put it's contents into the other array which is type of String, to convert them I have used toString() method and to put the first array's content into the other, I Iterate over the first array and put them into the second one but when I want to use the content of the String Array it's contents are printed wrong!I appreciate if anyone tell me, How could I convert Object into String?
Re: How to convert array of Objects into array of Strings?
when you say that "contents are printed wrong", what do you see and what are you expecting to see? Could you please be more specific?
Hartti
Re: How to convert array of Objects into array of Strings?
Thank you for your reply,I solved my problem!