ai está meu codigo
public class Leitor {
public static void main(String[] args) throws IOException {
Integer m[][] = new Integer[58][58];
BufferedReader br = new BufferedReader(new FileReader("C:\\Users\\Thiago\\Downloads\\teste.txt"));
String texto = br.readLine();
while ((texto ) != null) {
for (int i = 0; i < m.length; i++) {
for (int j = 0; j < m.length; j++) {
m[i][j] = Integer.parseInt(texto);
}
}
}
for (int i = 0; i < m.length; i++, System.out.println("\n")) {
for (int j = 0; j < m.length; j++) {
System.out.print(m[i][j] + " ");
}
}
}
}