How can I open a txt file an read numbers separated by enters or spaces into an array list?
Thanks.
|
How can I open a txt file an read numbers separated by enters or spaces into an array list? Thanks. |
|||||
|
|
Read file, parse each line into an integer and store into a list:
|
|||
|
This will read line by line, If your no. are saperated by newline char. then in place of
You can have
If it is separated by spaces then
|
|||||||
|