FileDocCategorySizeDatePackage
SerializableZipFileNot.javaAPI DocExample950Mon Feb 13 12:20:58 GMT 2006None

SerializableZipFileNot

public class SerializableZipFileNot extends ZipFile implements Serializable

Fields Summary
Constructors Summary
public SerializableZipFileNot(String filename)

    super(filename);
  
public SerializableZipFileNot(File file)

    super(file);
  
Methods Summary
public static voidmain(java.lang.String[] args)


    try {
      SerializableZipFileNot szf = new SerializableZipFileNot(args[0]);
      ByteArrayOutputStream bout = new ByteArrayOutputStream();
      ObjectOutputStream oout = new ObjectOutputStream(bout);
      oout.writeObject(szf);
      oout.close();
      System.out.println("Wrote object!");

      ByteArrayInputStream bin = new 
       ByteArrayInputStream(bout.toByteArray());
      ObjectInputStream oin = new ObjectInputStream(bin);
      Object o = oin.readObject();
      System.out.println("Read object!");
    }
    catch (Exception ex) {ex.printStackTrace();}