Ver Mensaje Individual
  #1 (permalink)  
Antiguo 17/05/2007, 06:00
laudrup
 
Fecha de Ingreso: febrero-2007
Mensajes: 172
Antigüedad: 17 años, 11 meses
Puntos: 0
sigue el problema con archivos

Continuo con los problemas para escribir y leer en el archivo.Segun he mirado,ahora escribo asi en el archivo
//asi declaro el objeto
MiObjectOutputStream out= new MiObjectOutputStream(new FileOutputStream("tasques.obj",true));
//esta es la funcion para escribir
out.writeUnshared(ntp);
//y he sobrecargado el operador para que no incluya la cabecera al escribir
public class MiObjectOutputStream extends ObjectOutputStream
{
public MiObjectOutputStream(OutputStream out) throws IOException
{
super(out);
}
protected MiObjectOutputStream() throws IOException, SecurityException
{
super();
}
protected void writeStreamHeader() throws IOException
{
}
}

Pero aun asi me sigue saliendo el java.io.StreamCorruptedException al leer del archivo