|
|
@ -0,0 +1,43 @@ |
|
|
|
package jorpelu.com; |
|
|
|
import java.io.*; |
|
|
|
public class EscribirFichObject { |
|
|
|
|
|
|
|
public static void main(String[] args) throws IOException { |
|
|
|
Persona persona; |
|
|
|
File fichero = new File("./persona2.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) { |
|
|
|
//nada |
|
|
|
} catch (ClassNotFoundException error) { |
|
|
|
error.printStackTrace(); |
|
|
|
System.out.println(error.getMessage()); |
|
|
|
} |
|
|
|
dataIS.close(); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |