Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to take text file data, and put it into a 2d int[][] array. I've tried several things and all has failed. How can I do this effectively and properly?

Heres my code:

public void readMap() throws IOException
    {
        try
        {
            in = new BufferedReader(new FileReader("testfile.txt"));
            String currLine;

            while((currLine = in.readLine()) != null)
            {
                System.out.println(currLine);

                for(int x = 0; x < tile_nums; x++)
                {
                    for(int y = 0; y < tile_nums; y++)
                    {

                    }
                }

            }   
        } 
        finally
        {
            in.close();
        }

    }

and my text file data:

100000000
111111010
100001010
111111110
000001000
000000000
000000000
000000000
000000000
000000000
share|improve this question
1  
Your file ... doesn't contain doubles. Or anything that immediately resembles data that would go into a 2d array. – Brian Roach Nov 11 '11 at 17:20
Okay, Sorry I rephrased it. – Wesnc Nov 11 '11 at 17:26
Ok, you now have a file that ... doesn't really contain ints. Or anything that immediately resembles data that would go into a 2d array. – Brian Roach Nov 11 '11 at 17:30
Is each character of each line an int to go into your array? So the possible range of values is 0-9? – John B Nov 11 '11 at 17:31
Well, the file is strings, I have to convert those to ints to put into the array – Wesnc Nov 11 '11 at 17:38
show 2 more comments

1 Answer

up vote 1 down vote accepted

Couple things,

First, in order to determine the size of the outter array you will need to determine the number of lines in the file. Or you can process each line to produce the inner arrays, store them in a List and create the outter array from the list.

Second, you need to take each line, determine the length (line.length()) to create the inner array of the appropriate size (int[] inner = new int[line.length()];)

Finally, convert the line to an array of chars and convert each char to an int using Integer.parseInt

I am not posting the entire solution since I think this is probably homework.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.