Reading file into a double int array...
I've read files into java line by line before (I don't remember how to anymore but I can figure it out again), but my problem is this.
I want to have a .txt file, that looks like this:
0,1,6,3,3,4,5,6,7
2,3,4,5,1,2,3,4,5
6,1,2,3,4,5,6,2,3
...etc....
I want to read every two numbers into a double Point array. How would I go about doing this? Or is there a different approach I should use?

