xD, si, el problema es que soy desarrollador web y la mayoria de mis clientes usan chrome, por tanto me la paso ahi (y para no tener abierto 2 browsers uso chrome)
Esta sección te permite ver todos los mensajes escritos por este usuario. Ten en cuenta que sólo puedes ver los mensajes escritos en zonas a las que tienes acceso en este momento.
Mostrar Mensajes MenúCita de: engel lex en 2 Mayo 2017, 17:23 PM
no se hacen tareas... muestra lo que llevas y explica tus dudas
public class Test implements Serializable {
private String name;
public Test(String name) {
this.name = name;
}
public String getName() {
return name;
}
public static void main(String[] args) throws FileNotFoundException, IOException, ClassNotFoundException {
Test test =new Test("ravi");
Test[] array = new Test[]{
new Test("a"),
new Test("b"),
new Test("c"),
new Test("d")
};
FileOutputStream fout=new FileOutputStream("C:\\Users\\Nacho\\Desktop\\output.txt");
ObjectOutputStream out=new ObjectOutputStream(fout);
out.writeObject(array);
out.close();
FileInputStream fin = new FileInputStream("C:\\Users\\Nacho\\Desktop\\output.txt");
ObjectInputStream ois = new ObjectInputStream(fin);
Test[] test2 = (Test[]) ois.readObject();
for(Test t : test2) System.out.println(t.getName());
}
}