I have a question about Java. I have an Object[] (Java default, not the user-defined) and I want to convert it to a String[]. Can anyone help me? thank you.
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
this is conversion
This is casting
Update: Tweak 1
Tweak2
Note:That only works if the objects are all Strings; his current code works even if they are not forTweak1 :only on Java 1.6 and above |
|||||||||||||||
|
|
Simply casting like this Try something like this:
You could then use the function either like this
or like this
|
|||||
|
|
I think this is the simplest way if all entries in objectArr are String:
|
|||
|
I guess you could also use System.arraycopy
provided, |
||||