Im reading from a file that looks like this
5
0 3 1 4 2
4 0 6 1 4
1 2 0 6 5
6 3 1 0 8
4 1 9 3 0
the first number is irrelevant. I want to start reading from line 2. I am able to read line 1 and store it but I am having trouble reading the rest of the array.
import java.io.BufferedReader;
import java.io.FileReader;
import java.io.IOException;
public class TSM {
private static int numOfCities;
private static int[][] arr;
public static void main(String[] args) throws NumberFormatException, IOException{
numOfCities = 0;
BufferedReader br = new BufferedReader(new FileReader("/Users/sly/Desktop/tsp.txt"));
String line = " ";
String [] temp;
while ((line = br.readLine())!= null){
if(line.trim().length() ==1) { //set value of first line in file to be numOfCities
numOfCities = Integer.parseInt(line);
System.out.println("There are"+ " " + numOfCities+ " " + "Number of cities");
} else{
temp = line.split(" "); //split spaces
for(int i = 0; i<arr.length; i++) {
for (int j = 0; j<arr.length; j++) {
arr[i][j] = Integer.parseInt(temp[i]);
}
}
}
}
printArray();
}
public static void printArray () {
for (int i =0; i <arr.length; i++) {
for (int j = 0; j < arr.length; j++) {
System.out.print(arr[i][j]);
}
System.out.println("");
}
}
}
Troubledoesn't explain your problem clearly. – Rohit Jain Oct 1 '12 at 20:54System.out.println()notSystem.out.println(""), they have the same effect. Also, never append two string constants ("There are" + " " and " " + "Number of cites"), as it does take a little bit of time to append, and it's simpler just to directly hand it "There are " or " Number of cities" – Alex Coleman Oct 1 '12 at 20:59