I want to create an array, populating it while reading elements from a .txt file formatted like so:
item1
item2
item3
So the final result has to be an array like this:
String[] myArray = {item1, item2, item3}
Thanks in advance.
|
Simple implementation:
|
||||
|
|
|
This smells like homework. If it is you should re-read your notes, and tell us what you've tried. Personally, I would use a Scanner (from java.util).
|
|||
|
|