aspose file tools
The moose likes Java in General and the fly likes Read data from a file into a 2D array Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login


JavaRanch » Java Forums » Java » Java in General
Reply Bookmark "Read data from a file into a 2D array" Watch "Read data from a file into a 2D array" New topic
Author

Read data from a file into a 2D array

sony vijay
Ranch Hand

Joined: Jun 27, 2010
Posts: 32
Hi,

Say, I have a file like so:

3
4
1,2,3,4
5,6,7,8
9,10,11,12

The first line represents the number of rows and the second line represents the number of columns. Thereafter, each line represents the data of a 2D array. I am using the following code to create a 2D array from the input file in Java.



The above code works. But, my task is to modify the code in order to create a 2D array from the array data directly without having to specify the rows/columns in the input file. The input file would now look like so:
1,2,3,4
5,6,7,8
9,10,11,12

My code should be able to read this file and dynamically create a 3*4 array. I am not sure how to do that. Thank You!

fred rosenberger
lowercase baba
Bartender

Joined: Oct 02, 2003
Posts: 10040
    
    6

One way or another, you're going to have to read the whole file first so you know how big your array has to be.

Whether you do multiple passes through it, store it all in memory, use some other data structure as an intermediary, or something else, you HAVE to know the dimensions of the array before you can declare it.


Never ascribe to malice that which can be adequately explained by stupidity.
Wendy Gibbons
Bartender

Joined: Oct 21, 2008
Posts: 1098

does it have to be an array, is there any reason you couldn't use an ArrayList?
Joshi Nirav
Greenhorn

Joined: Dec 04, 2009
Posts: 14

Hi all,

I think we can do it by this way.... This is a general Algorithm.

take some initial size of the No_Of_row = 2;
int oldData[] [] = null;
intialCounter = 0;
While(Read the File till EOF){
str := first line of the file.
col[] := split the 'str' by using the specific operator (In Our case its ',')
oldData = new int[No_Of_row][col.length];
initialCounter++;
if(initialCounter > No_Of_row){
int newData[][] = new int[initialCounter][col.length];
System.arrayCopy(oldata,0,newData,0,initialCounter - 1);
}else{
oldData[initialCounter - 1] = col;
}
}


Thanks and Regards
Nirav Joshi
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: Read data from a file into a 2D array
 
Similar Threads
Problem with reading txt file into 2d array
Need some help!!!
Tokens into array, datatype??
Manipulating Vectors (code not working)
where this program goes wrong(using 2D array)?