程序包 proguard.io
类 JarWriter
- java.lang.Object
-
- proguard.io.JarWriter
-
- 所有已实现的接口:
java.lang.AutoCloseable,DataEntryWriter
- 直接已知子类:
SignedJarWriter
public class JarWriter extends java.lang.Object implements DataEntryWriter
ThisDataEntryWritersends data entries to another given data entry writer, automatically adding a manifest file.You'll typically wrap a
ZipWriteror one of its extensions:new JarWriter(new ZipWriter(...))
-
-
嵌套类概要
嵌套类 修饰符和类型 类 说明 protected static classJarWriter.MyMultiDigestOutputStreamThis FilterOutputStream automatically appends a file digest entry to a given manifest writer, when the stream is closed.
-
字段概要
字段 修饰符和类型 字段 说明 protected java.lang.Stringcreatorprotected DataEntrycurrentManifestEntrystatic java.lang.StringDEFAULT_DIGEST_ALGORITHMprotected java.lang.String[]digestAlgorithmsprotected DataEntryWritermanifestEntryWriterprotected DataEntryWriterzipEntryWriter
-
构造器概要
构造器 构造器 说明 JarWriter(java.lang.String[] digestAlgorithms, java.lang.String creator, java.lang.String manifestFileName, StringFunction manifestEntryNameFunction, DataEntryWriter zipEntryWriter, DataEntryWriter manifestEntryWriter)Creates a new JarWriter.JarWriter(java.lang.String[] digestAlgorithms, java.lang.String creator, DataEntryWriter zipEntryWriter)Creates a new JarWriter wth default manifest file name "META-INF/MANIFEST.MF".JarWriter(java.lang.String[] digestAlgorithms, DataEntryWriter zipEntryWriter)Creates a new JarWriter wth default manifest file name "META-INF/MANIFEST.MF".JarWriter(DataEntryWriter zipEntryWriter)Creates a new JarWriter wth default manifest digest "SHA-256" and manifest file name "META-INF/MANIFEST.MF".
-
方法概要
所有方法 静态方法 实例方法 具体方法 修饰符和类型 方法 说明 voidclose()Finishes writing all data entries.booleancreateDirectory(DataEntry dataEntry)Creates a directory.protected java.io.OutputStreamcreateManifestOutputStream(DataEntry manifestEntry)Creates an output stream for the specified manifest file.java.io.OutputStreamcreateOutputStream(DataEntry dataEntry)Creates a new output stream for writing data.protected voidfinish()Writes out the collected manifest file before closing the jar, if any.protected voidfinishIfNecessary(DataEntry dataEntry)Writes out the collected manifest file for the current jar, if we're entering a new jar with this data entry.static voidmain(java.lang.String[] args)Provides a simple test for this class, creating a signed apk file (only v1) with the given name and a few aligned/compressed/uncompressed zip entries.protected voidopenManifestFiles()Prepares streams and writers for capturing digests of a parent entry.voidprintln(java.io.PrintWriter pw, java.lang.String prefix)Prints out the structure of the data entry writer.protected java.io.PrintWriterprintWriter(java.io.OutputStream outputStream)Creates a convenience writer.booleansameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2)Returns whether the two given data entries would result in the same output stream.
-
-
-
字段详细资料
-
DEFAULT_DIGEST_ALGORITHM
public static final java.lang.String DEFAULT_DIGEST_ALGORITHM
- 另请参阅:
- 常量字段值
-
digestAlgorithms
protected final java.lang.String[] digestAlgorithms
-
creator
protected final java.lang.String creator
-
zipEntryWriter
protected final DataEntryWriter zipEntryWriter
-
manifestEntryWriter
protected final DataEntryWriter manifestEntryWriter
-
currentManifestEntry
protected DataEntry currentManifestEntry
-
-
构造器详细资料
-
JarWriter
public JarWriter(DataEntryWriter zipEntryWriter)
Creates a new JarWriter wth default manifest digest "SHA-256" and manifest file name "META-INF/MANIFEST.MF".- 参数:
zipEntryWriter- the data entry writer that can provide output streams for the jar entries.
-
JarWriter
public JarWriter(java.lang.String[] digestAlgorithms, DataEntryWriter zipEntryWriter)Creates a new JarWriter wth default manifest file name "META-INF/MANIFEST.MF".- 参数:
digestAlgorithms- the manifest digest algorithms, e.g. "SHA-256".zipEntryWriter- the data entry writer that can provide output streams for the jar entries.
-
JarWriter
public JarWriter(java.lang.String[] digestAlgorithms, java.lang.String creator, DataEntryWriter zipEntryWriter)Creates a new JarWriter wth default manifest file name "META-INF/MANIFEST.MF".- 参数:
digestAlgorithms- the manifest digest algorithms, e.g. "SHA-256".creator- the creator to mention in the manifest file.zipEntryWriter- the data entry writer that can provide output streams for the jar entries.
-
JarWriter
public JarWriter(java.lang.String[] digestAlgorithms, java.lang.String creator, java.lang.String manifestFileName, StringFunction manifestEntryNameFunction, DataEntryWriter zipEntryWriter, DataEntryWriter manifestEntryWriter)Creates a new JarWriter.- 参数:
digestAlgorithms- the manifest digest algorithms, e.g. "SHA-256".creator- the creator to mention in the manifest file.manifestFileName- the manifest file name, e.g. "META-INF/MANIFEST.MF".manifestEntryNameFunction- the function to transform entry names in the manifest (not in the jar).zipEntryWriter- the data entry writer that can provide output streams for the jar entries.manifestEntryWriter- the data entry writer that can provide an output stream for the manifest file.
-
-
方法详细资料
-
createDirectory
public boolean createDirectory(DataEntry dataEntry) throws java.io.IOException
从接口复制的说明:DataEntryWriterCreates a directory.- 指定者:
createDirectory在接口中DataEntryWriter- 参数:
dataEntry- the data entry for which the directory is to be created.- 返回:
- whether the directory has been created.
- 抛出:
java.io.IOException
-
sameOutputStream
public boolean sameOutputStream(DataEntry dataEntry1, DataEntry dataEntry2) throws java.io.IOException
从接口复制的说明:DataEntryWriterReturns whether the two given data entries would result in the same output stream.- 指定者:
sameOutputStream在接口中DataEntryWriter- 参数:
dataEntry1- the first data entry.dataEntry2- the second data entry.- 抛出:
java.io.IOException
-
createOutputStream
public java.io.OutputStream createOutputStream(DataEntry dataEntry) throws java.io.IOException
从接口复制的说明:DataEntryWriterCreates a new output stream for writing data. The caller is responsible for closing the stream.- 指定者:
createOutputStream在接口中DataEntryWriter- 参数:
dataEntry- the data entry for which the output stream is to be created.- 返回:
- the output stream. The stream may be
nullto indicate that the data entry should not be written. - 抛出:
java.io.IOException
-
close
public void close() throws java.io.IOException从接口复制的说明:DataEntryWriterFinishes writing all data entries.Implementations typically create graphs of writers that can split and merge again, possibly even with cycles.
For splits and merges, implementations need to be idempotent; once closed, subsequent attempts to close a writer have no effect. If needed, the wrapper
NonClosingDataEntryWritercan avoid closing a branch prematurely.For cycles, implementations must perform any custom behavior, then delegate
DataEntryWriter.close()invocations, and only finally clean up. It is possible that delegates callDataEntryWriter.createOutputStream(DataEntry)whileDataEntryWriter.close()is in progress.- 指定者:
close在接口中java.lang.AutoCloseable- 指定者:
close在接口中DataEntryWriter- 抛出:
java.io.IOException
-
println
public void println(java.io.PrintWriter pw, java.lang.String prefix)从接口复制的说明:DataEntryWriterPrints out the structure of the data entry writer.- 指定者:
println在接口中DataEntryWriter- 参数:
pw- the print stream to which the structure should be printed.prefix- a prefix for every printed line.
-
openManifestFiles
protected void openManifestFiles() throws java.io.IOExceptionPrepares streams and writers for capturing digests of a parent entry.- 抛出:
java.io.IOException
-
createManifestOutputStream
protected java.io.OutputStream createManifestOutputStream(DataEntry manifestEntry) throws java.io.IOException
Creates an output stream for the specified manifest file.- 抛出:
java.io.IOException
-
finishIfNecessary
protected void finishIfNecessary(DataEntry dataEntry) throws java.io.IOException
Writes out the collected manifest file for the current jar, if we're entering a new jar with this data entry.- 抛出:
java.io.IOException
-
finish
protected void finish() throws java.io.IOExceptionWrites out the collected manifest file before closing the jar, if any.- 抛出:
java.io.IOException
-
printWriter
protected java.io.PrintWriter printWriter(java.io.OutputStream outputStream) throws java.io.IOExceptionCreates a convenience writer.- 参数:
outputStream- the underlying output stream.- 抛出:
java.io.IOException
-
main
public static void main(java.lang.String[] args)
Provides a simple test for this class, creating a signed apk file (only v1) with the given name and a few aligned/compressed/uncompressed zip entries. Arguments: jar_filename Verify the jar with: jarsigner -verify -verbose /tmp/test.jar
-
-