|
|
@ -14,7 +14,7 @@ public class HolaFichero { |
|
|
|
opcion = menuPrincipal(); |
|
|
|
switch (opcion){ |
|
|
|
case 1: |
|
|
|
CreoFicheroWindows(); |
|
|
|
crearFicheroWindows(); |
|
|
|
break; |
|
|
|
case 2: |
|
|
|
crearFicheroLinux(); |
|
|
@ -25,7 +25,7 @@ public class HolaFichero { |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
public static void CreoFicheroWindows() throws IOException { |
|
|
|
public static void crearFicheroWindows() throws IOException { |
|
|
|
System.out.println("Creando fichero en Windows ..."); |
|
|
|
File fwindows = new File("C:\\Users\\crist\\Documents\\2DAM\\BaseDeDatos\\BaseDaDatos.txt"); |
|
|
|
|
|
|
@ -47,7 +47,6 @@ public class HolaFichero { |
|
|
|
|
|
|
|
System.out.println("Creando fichero en linux!!!"); |
|
|
|
File linux = new File("/home/mario/archivo.txt"); |
|
|
|
|
|
|
|
if(linux.createNewFile()) { |
|
|
|
|
|
|
|
try (FileWriter escribir = new FileWriter(linux)) { |
|
|
|