Tengo este codigo que me pasaron, y quisiera saber donde se encuentra alojado el archivo Matriz.txt? en que parte de mi disco duro? Gracias..
/*
* To change this template, choose Tools | Templates
* and open the template in the editor.
*/
package matriz;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.util.logging.Level;
import java.util.logging.Logger;
/**
*
* @author Luis
*/
public class Matriz {
/**
* @param args the command line arguments
*/
public static void main(String[] args) {
// TODO code application logic here
int[][] Matriz = ReadMatriz4x4(new File(System.getProperty("user.dir")+"/ma…
for(int x=0;x<4;x++){
for(int y=0;y<4;y++){
System.out.println("Matriz: "+x+" "+y+" = "+Matriz
- [y]);
}
}
private static int[][] ReadMatriz4x4(File f){
try {
if(f.exists()){
int[][] Matriz = new int[4][4];
BufferedReader bf = new BufferedReader(new FileReader(f));
int Dimencion = 0;
String Linea = bf.readLine();
while(Linea != null && Dimencion<4){
String[] tmp = Linea.split(";");
for(int x=0;x<4;x++)
Matriz[Dimencion]
- = Integer.valueOf(tmp
- );
Linea = bf.readLine();
}
return Matriz;
}
} catch (IOException ex) {
Logger.getLogger(Matriz.class.getName())… null, ex);
}
return null;
}
}