|
@ -18,14 +18,12 @@ public class Ejercicio5 { |
|
|
static String escritura; |
|
|
static String escritura; |
|
|
|
|
|
|
|
|
public static void main(String[] args) { |
|
|
public static void main(String[] args) { |
|
|
|
|
|
|
|
|
if (args.length < 0) { |
|
|
|
|
|
System.out.println("Error el número de parametros debe de ser tener al menos 1 caracter "); |
|
|
|
|
|
|
|
|
String path = "/home/michael/Documents/SpringProjects/Ejercicio_5/src/Ejercicio5/prueba.txt"; |
|
|
|
|
|
if (args.length > 0) { |
|
|
|
|
|
escribirFichero(path); |
|
|
System.exit(-1); |
|
|
System.exit(-1); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
String path = "/home/michael/Documents/SpringProjects/Ejercicio_5/src/Ejercicio5/prueba.txt"; |
|
|
|
|
|
escribirFichero(path); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|