Buenos días, estoy intentando crear un fichero con una ruta, o directamente crear el fichero pero de ninguna manera me deja. El error permanece en la 2º fila cuando le indico la ruta
Lo he intentado hacer de dos formas, 1- indicando directamente el nombre del fichero, 2- indicándole la ruta, no encuentro el error.
try {
File fichero
= New File("ProbandoFichero.txt"); // aqui esta el error {
if (fichero.createNewFile()) {
System.
out.
println("Fichero con nombre: " + fichero.
getName() + " ha sido creado"); } else {
System.
out.
println("El fichero ya existe"); }
fichero.close();
}
System.
out.
println(e.
getMessage());
}
}
}
//////////////////////////////////////////////////////////////////////////////////////////////////
try {
File fichero
= New File("C:\\Users\\Rizis\\Documents\\Proyecto\\JavaApplication31\\src\\ProbandoFichero.txt"); //aqui esta el error {
if (fichero.createNewFile()) {
System.
out.
println("Fichero con nombre: " + fichero.
getName() + " ha sido creado"); } else {
System.
out.
println("El fichero ya existe"); }
fichero.close();
}
System.
out.
println(e.
getMessage());
}
}
}