Added in API level 1

JarOutputStream

open class JarOutputStream : ZipOutputStream
kotlin.Any
   ↳ java.io.OutputStream
   ↳ java.io.FilterOutputStream
   ↳ java.util.zip.DeflaterOutputStream
   ↳ java.util.zip.ZipOutputStream
   ↳ java.util.jar.JarOutputStream

The JarOutputStream class is used to write the contents of a JAR file to any output stream. It extends the class java.util.zip.ZipOutputStream with support for writing an optional Manifest entry. The Manifest can be used to specify meta-information about the JAR file and its entries.

Summary

Inherited constants
Public constructors

Creates a new JarOutputStream with no manifest.

Creates a new JarOutputStream with the specified Manifest.

Public methods
open Unit

Begins writing a new JAR file entry and positions the stream to the start of the entry data.

Inherited functions
Inherited properties

Public constructors

JarOutputStream

Added in API level 1
JarOutputStream(out: OutputStream!)

Creates a new JarOutputStream with no manifest.

Parameters
out OutputStream!: the actual output stream
Exceptions
java.io.IOException if an I/O error has occurred

JarOutputStream

Added in API level 1
JarOutputStream(
    out: OutputStream!,
    man: Manifest!)

Creates a new JarOutputStream with the specified Manifest. The manifest is written as the first entry to the output stream.

Parameters
out OutputStream!: the actual output stream
man Manifest!: the optional Manifest
Exceptions
java.io.IOException if an I/O error has occurred

Public methods

putNextEntry

Added in API level 1
open fun putNextEntry(ze: ZipEntry!): Unit

Begins writing a new JAR file entry and positions the stream to the start of the entry data. This method will also close any previous entry. The default compression method will be used if no compression method was specified for the entry. The current time will be used if the entry has no set modification time.

Parameters
e the ZIP entry to be written
ze ZipEntry!: the ZIP/JAR entry to be written
Exceptions
java.io.IOException if an I/O error has occurred
java.util.zip.ZipException if a ZIP error has occurred