Browse Source

Actualizado el codigo para llamar al metodo y crear el fichero en

windows con la ruta seleccionada
master
kevin 2 years ago
parent
commit
1fb5bff3ef
2 changed files with 5 additions and 4 deletions
  1. BIN
      bin/dam/daw/com/es/HolaFichero.class
  2. +5
    -4
      src/dam/daw/com/es/HolaFichero.java

BIN
bin/dam/daw/com/es/HolaFichero.class View File


+ 5
- 4
src/dam/daw/com/es/HolaFichero.java View File

@ -6,13 +6,13 @@ public class HolaFichero {
static char Sistema;
public static void main(String args[]) {
public static void main(String args[]) throws IOException {
char Sistema=MiSistema();
System.out.println(Sistema);
}
static char MiSistema() {
static char MiSistema() throws IOException {
char Sis='?';
char Windows='W';
char Linux='L';
@ -22,6 +22,7 @@ public class HolaFichero {
if (so.charAt(0)==Windows) {
System.out.print("Windows -> ");
Sis=Windows;
CreoFicheroWindows();
}
else {
System.out.print("Linux -> ");
@ -30,9 +31,9 @@ public class HolaFichero {
return Sis;
}
public void CreoFicheroWindows() throws IOException {
public static void CreoFicheroWindows() throws IOException {
System.out.println("Creando fichero en Windows ...");
File fwindows = new File("G:\\ADA\\T1.Ficheros\\CreoFicheroWindows.txt");
File fwindows = new File("C:\\Users\\kevin\\Documents\\CreoFicheroWindows.txt");
if (!fwindows.exists()) {
fwindows.createNewFile();
}


Loading…
Cancel
Save