Browse Source

prueba

master
Joan Moncho 2 years ago
commit
c804e3b0fb
6 changed files with 128 additions and 0 deletions
  1. +10
    -0
      .classpath
  2. +17
    -0
      .project
  3. +2
    -0
      .settings/org.eclipse.core.resources.prefs
  4. +14
    -0
      .settings/org.eclipse.jdt.core.prefs
  5. BIN
      bin/HolaFichero.class
  6. +85
    -0
      src/HolaFichero.java

+ 10
- 0
.classpath View File

@ -0,0 +1,10 @@
<?xml version="1.0" encoding="UTF-8"?>
<classpath>
<classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-17">
<attributes>
<attribute name="module" value="true"/>
</attributes>
</classpathentry>
<classpathentry kind="src" path="src"/>
<classpathentry kind="output" path="bin"/>
</classpath>

+ 17
- 0
.project View File

@ -0,0 +1,17 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
<name>HolaFicheroBueno</name>
<comment></comment>
<projects>
</projects>
<buildSpec>
<buildCommand>
<name>org.eclipse.jdt.core.javabuilder</name>
<arguments>
</arguments>
</buildCommand>
</buildSpec>
<natures>
<nature>org.eclipse.jdt.core.javanature</nature>
</natures>
</projectDescription>

+ 2
- 0
.settings/org.eclipse.core.resources.prefs View File

@ -0,0 +1,2 @@
eclipse.preferences.version=1
encoding/<project>=UTF-8

+ 14
- 0
.settings/org.eclipse.jdt.core.prefs View File

@ -0,0 +1,14 @@
eclipse.preferences.version=1
org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled
org.eclipse.jdt.core.compiler.codegen.targetPlatform=17
org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve
org.eclipse.jdt.core.compiler.compliance=17
org.eclipse.jdt.core.compiler.debug.lineNumber=generate
org.eclipse.jdt.core.compiler.debug.localVariable=generate
org.eclipse.jdt.core.compiler.debug.sourceFile=generate
org.eclipse.jdt.core.compiler.problem.assertIdentifier=error
org.eclipse.jdt.core.compiler.problem.enablePreviewFeatures=disabled
org.eclipse.jdt.core.compiler.problem.enumIdentifier=error
org.eclipse.jdt.core.compiler.problem.reportPreviewFeatures=warning
org.eclipse.jdt.core.compiler.release=enabled
org.eclipse.jdt.core.compiler.source=17

BIN
bin/HolaFichero.class View File


+ 85
- 0
src/HolaFichero.java View File

@ -0,0 +1,85 @@
import java.io.File;
import java.io.FileWriter;
import java.io.IOException;
import java.util.Scanner;
import java.util.Vector;
public class HolaFichero{
static Scanner teclado = new Scanner(System.in);
public static void main(String[] args) {
int opcion;
do {
opcion = menuPrincipal();
switch (opcion){
case 1:
crearWindows();
break;
case 2:
crearLinux();
break;
}
}while (opcion !=0);
}
private static void crearWindows() {
File archivo;
try {
archivo = new File("C:\\\\Users\\\\Joan Moncho\\\\Documents\\\\2 DAM\\\\Acceso Datos\\\\Files", "Prueba.txt");
if(archivo.createNewFile()) {
System.out.println("Se ha creado un archivo");
FileWriter escribir= new FileWriter(archivo);
escribir.write("Esto es una prueba");
escribir.close();
}else {
System.out.println("No se ha podido crear el archivo");
}
}catch(IOException e) {
}
}
private static void crearLinux() {
File archivo;
try {
archivo = new File("/home/joan/prueba", "Prueba.txt");
if(archivo.createNewFile()) {
System.out.println("Se ha creado un archivo");
FileWriter escribir= new FileWriter(archivo);
escribir.write("Esto es una prueba");
escribir.close();
}else {
System.out.println("No se ha podido crear el archivo");
}
}catch(IOException e) {
}
}
public static int menuPrincipal() {
int opcion;
System.out.println("Escribe una opcion, dependera de tu sistema operativo:");
System.out.println("1- Windows ");
System.out.println("2- Linux ");
System.out.println("Elige una opcion:");
opcion = Integer.parseInt(teclado.nextLine());
return opcion;
}
}

Loading…
Cancel
Save