|
|
@ -0,0 +1,53 @@ |
|
|
|
package SerializableFicheros; |
|
|
|
|
|
|
|
import java.io.*; |
|
|
|
|
|
|
|
/*8.1 Serializar */ |
|
|
|
|
|
|
|
public class SerializableFicheros { |
|
|
|
|
|
|
|
public static void main(String[] args) throws IOException{ |
|
|
|
|
|
|
|
Persona persona; |
|
|
|
|
|
|
|
File fichero = new File("C:\\ADA\\FichPersona.dat"); |
|
|
|
FileOutputStream fileout = new FileOutputStream(fichero); |
|
|
|
ObjectOutputStream dataOS= new ObjectOutputStream(fileout); |
|
|
|
|
|
|
|
String[] nombres= {"Juan","Pedro","Perico","Andrés"}; |
|
|
|
|
|
|
|
int[] edades= {21,22,23,24}; |
|
|
|
for (int i = 0; i < edades.length; i++) { |
|
|
|
persona = new Persona(nombres[i],edades[i]); |
|
|
|
dataOS.writeObject(persona); |
|
|
|
} |
|
|
|
|
|
|
|
dataOS.close(); |
|
|
|
leerFichObject(fichero); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
public static void leerFichObject (File fichero) throws IOException { |
|
|
|
|
|
|
|
Persona persona; |
|
|
|
FileInputStream filein = new FileInputStream(fichero); |
|
|
|
ObjectInputStream dataIS = new ObjectInputStream(filein); |
|
|
|
|
|
|
|
try { |
|
|
|
while (true) { |
|
|
|
persona = (Persona) dataIS.readObject(); |
|
|
|
System.out.println("Nombre: "+persona.getNombre()+ |
|
|
|
" Edad: "+persona.getEdad()); |
|
|
|
} |
|
|
|
} catch (EOFException error) { |
|
|
|
//Ignore |
|
|
|
} catch (ClassNotFoundException error) { |
|
|
|
error.printStackTrace(); |
|
|
|
System.out.println(error.getMessage()); |
|
|
|
} |
|
|
|
|
|
|
|
dataIS.close(); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |