Adding to an Array
Posted
by j-t-s
on Stack Overflow
See other posts from Stack Overflow
or by j-t-s
Published on 2010-05-13T11:13:54Z
Indexed on
2010/05/13
11:24 UTC
Read the original article
Hit count: 107
Hi All
I have an array:
String[] ay = {
"blah",
"blah number 2"
"etc" };
... But now I want to add to this array at a later time, but I see no option to do so. How can this be done? I keep getting a message saying that the String cannot be converted to String[].
Thank you
© Stack Overflow or respective owner