i\'ve digging around about the same issue but i couldn\'t find the same as i had
i want to create an array without declaring the size because i don\'t know how it w
You might be looking for a List? Either LinkedList or ArrayList are good classes to take a look at. You can then call toArray() to get the list as an array.
List
LinkedList
ArrayList
toArray()