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?

[434 byte] By [maxfarrara] at [2007-11-26 17:44:11]
# 1
My Suggestion are :1. read line by line in string format2. split the string into point of array using reguler expressionread the detail in java.util.regex
p_epia at 2007-7-9 0:12:22 > top of Java-index,Java Essentials,New To Java...
# 2
java.util.Scanner
ejpa at 2007-7-9 0:12:22 > top of Java-index,Java Essentials,New To Java...