@ -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> |
@ -0,0 +1,17 @@ | |||||
<?xml version="1.0" encoding="UTF-8"?> | |||||
<projectDescription> | |||||
<name>Actividad_8_2</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> |
@ -0,0 +1,2 @@ | |||||
eclipse.preferences.version=1 | |||||
encoding/<project>=UTF-8 |
@ -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 |
@ -0,0 +1,24 @@ | |||||
#Leer el archivo .dat que hicimos en el ejercicicio 8_1 | |||||
Lo que consiste este ejercicio exactamente es leer el archivo .dat del ejercio anterior | |||||
y mostrar los datos del ejercio por pantalla, en este caso yo muestro nombre, apellido y edad. | |||||
Lo hacemos todo directamente en el main, lo podriamos cambiar a un metodo pero como en este caso solo tenemos este metodo tampoco haria falta. | |||||
``` | |||||
Nombre: Antonio | |||||
Apellidos: Pere | |||||
Edad: 20 | |||||
Nombre: Perico | |||||
Apellidos: Caldero | |||||
Edad: 18 | |||||
Nombre: JuanJo | |||||
Apellidos: Persiana | |||||
Edad: 19 | |||||
Nombre: Joan | |||||
Apellidos: Martinez | |||||
Edad: 45 | |||||
``` |
@ -0,0 +1,38 @@ | |||||
package com.cristobalbernal.Actividad_8_2; | |||||
import java.io.File; | |||||
import java.io.FileInputStream; | |||||
import java.io.FileNotFoundException; | |||||
import java.io.IOException; | |||||
import java.io.ObjectInputStream; | |||||
import java.util.ArrayList; | |||||
public class Main { | |||||
public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException{ | |||||
File fichero = new File("C:\\Users\\crist\\Documents\\2DAM\\BaseDeDatos\\Personas.dat"); | |||||
FileInputStream fileInputStream = new FileInputStream(fichero); | |||||
ObjectInputStream datos = new ObjectInputStream(fileInputStream); | |||||
String[] nombres; | |||||
String[] apellidos; | |||||
int[] edades; | |||||
nombres = (String[])datos.readObject(); | |||||
apellidos = (String[])datos.readObject(); | |||||
edades = (int[]) datos.readObject(); | |||||
ArrayList<Persona> personas = new ArrayList<>(); | |||||
for (int i = 0; i < nombres.length; i++) { | |||||
personas.add(new Persona(nombres[i], apellidos[i], edades[i])); | |||||
} | |||||
for (int i = 0; i < personas.size(); i++) { | |||||
System.out.println("Nombre: " + personas.get(i).getNombre()); | |||||
System.out.println("Apellidos: " + personas.get(i).getApellido()); | |||||
System.out.println(" Edad: " + personas.get(i).getEdades()); | |||||
System.out.println(" "); | |||||
} | |||||
datos.close(); | |||||
} | |||||
} |
@ -0,0 +1,25 @@ | |||||
package com.cristobalbernal.Actividad_8_2; | |||||
public class Persona { | |||||
private String nombre; | |||||
private String apellido; | |||||
private int edades; | |||||
public String getApellido() { | |||||
return apellido; | |||||
} | |||||
public int getEdades() { | |||||
return edades; | |||||
} | |||||
public String getNombre() { | |||||
return nombre; | |||||
} | |||||
public Persona(String nombre, String apellido, int edades) { | |||||
super(); | |||||
this.nombre = nombre; | |||||
this.apellido = apellido; | |||||
this.edades = edades; | |||||
} | |||||
} |
@ -0,0 +1 @@ | |||||
package com.cristobalbernal.Actividad_8_2; |
@ -0,0 +1,9 @@ | |||||
/** | |||||
* | |||||
*/ | |||||
/** | |||||
* @author crist | |||||
* | |||||
*/ | |||||
module Actividad_8_2 { | |||||
} |