请教各位高手,我想要将txt档的内容存成二维阵列
该txt档的第一行(n)为二维阵列的列数(要存的二维阵列size为n*n)
下面为两个例子
4
0 3 23 0
3 0 2 0
23 2 0 5
0 0 5 0
5
0 7 0 0 10
7 0 2 20 0
0 2 0 11 0
0 20 11 0 5
10 0 0 5 0
我的写法是这样,可是出现一堆error,
请教各位高手该怎么处理这样的档案呢?
public static void main(String args[]) throws IOException
{
FileReader fr = new FileReader ("in0.txt");
BufferedReader br = new BufferedReader(fr);
n = Integer.parseInt(br.readLine());
String line,tempstring;
String[n] tempArray= new String[n];
ArrayList myList = new ArrayList();
int i=0;
while((line = br.readLine())!=null)
{
tempstring = line;
tempArray = tempstring.split("\\s");
for(i=0;i< n;i++)
{
myList.add(tempArray[i]);
}
}
int count=0;
double[][] trans_array = new double[n][n];
for(int x=0;x<n;x++)
{
for(int y=0;y<n;y++)
{
trans_array[x][y]=Double.parseDouble((String)
myList.get(count));
count++;
}
}
}