I was just wondering, can you read textiles or do you have to import text files into java (like as a string or array list) to be able to use the information on the textfile.
For example I have a file that looks similar to this
1 34 12 43 65
1 44 8 45 77
2 34 10 56 87
6 43 6 76 89
6 65 7 23 90
where each column down stands for something (maybe column one is item ID, column two is price, and column three is month). And then lets say I have 20gb of information layed out this way. Can I use java to make a data summary of this information or is the file just simply too large? I tried importing the 20gb file as an ArrayList, but after waiting 10 min and the arraylist still filling, i gave up.
I was thinking that maybe if I could interact directly with the file instead of importing it as a array list it may work.