Forum: Java Oct 3rd, 2004 |
| Replies: 1 Views: 2,535 hi,
I am trying to create a 2 dimmensional array that reads data from a text file using a buffer reader and tokenizer to separate the information in the text file. As far as using the buffer reader... |
Forum: Java Oct 3rd, 2004 |
| Replies: 2 Views: 15,755 What attempts have you made?
i have tried creating a 2 dimmensional array -
public static void main(String args[])
{
int coords[][];
coords = new int [4][];
for (int i=0; i<4; i++)... |
Forum: Java Oct 2nd, 2004 |
| Replies: 2 Views: 15,755 :cry: I am trying to create a 2d array that will store the information i hold in the txt file (which is in this format x,y - 45 50
36 47
... |