|
|
@ -0,0 +1,22 @@ |
|
|
|
package serializar.com.daniminguet.es; |
|
|
|
|
|
|
|
import java.io.*; |
|
|
|
|
|
|
|
public class EscribirFichObject { |
|
|
|
public static void main(String[] args) throws IOException{ |
|
|
|
Persona persona; |
|
|
|
File fichero = new File("C:\\Users\\Dani\\OneDrive\\Documentos\\AccesoADatos\\FichPersona.dat"); |
|
|
|
FileOutputStream fileout = new FileOutputStream(fichero); |
|
|
|
ObjectOutputStream dataOS= new ObjectOutputStream(fileout); |
|
|
|
String[] nombres= {"Juan","Pepe","Manolo","Erom"}; |
|
|
|
int[] edades= {18,20,56,78}; |
|
|
|
for (int i = 0; i < edades.length; i++) { |
|
|
|
persona = new Persona(nombres[i],edades[i]); |
|
|
|
dataOS.writeObject(persona); |
|
|
|
} |
|
|
|
fileout.close(); |
|
|
|
dataOS.close(); |
|
|
|
|
|
|
|
System.out.println("Se han creado los datos y guardado en el archivo correspondiente"); |
|
|
|
} |
|
|
|
} |