Class ArArchiveOutputStream

All Implemented Interfaces:
Closeable, Flushable, AutoCloseable

public class ArArchiveOutputStream extends ArchiveOutputStream<ArArchiveEntry>
Implements the "ar" archive format as an output stream.
  • Field Details

    • LONGFILE_ERROR

      public static final int LONGFILE_ERROR
      Fail if a long file name is required in the archive.
      See Also:
    • LONGFILE_BSD

      public static final int LONGFILE_BSD
      BSD ar extensions are used to store long file names in the archive.
      See Also:
  • Constructor Details

    • ArArchiveOutputStream

      public ArArchiveOutputStream(OutputStream out)
      Constructs a new instance with the given backing OutputStream.
      Parameters:
      out - the underlying output stream to be assigned to the field this.out for later use, or null if this instance is to be created without an underlying stream.
  • Method Details