Package net.sf.sevenzipjbinding
Interface IOutUpdateArchiveGZip
- All Superinterfaces:
IOutArchiveBase,IOutFeatureSetLevel,IOutUpdateArchive<IOutItemGZip>
- All Known Implementing Classes:
OutArchiveGZipImpl
The interface provides functionality to update existing GZip archives.
The standard way of getting the implementation of this interface is to use
The standard way of getting the implementation of this interface is to use
IInArchive.getConnectedOutArchive() method like this:IInArchiveinArchive =SevenZip.openInArchive(null, inStream);IOutUpdateArchive<IOutItemAllFormats>outArchive = inArchive.getConnectedOutArchive(); if (outArchive instanceofIOutUpdateArchiveGZip) {IOutUpdateArchiveGZipoutUpdateArchiveGZip = (IOutUpdateArchiveGZip)outArchive; ... } outArchive.updateItems(...); ... inArchive.close();
- Since:
- 9.20-2.00
- Author:
- Boris Brodski
- See Also:
-
Method Summary
Methods inherited from interface net.sf.sevenzipjbinding.IOutArchiveBase
getTracePrintStream, isTrace, setTrace, setTracePrintStreamMethods inherited from interface net.sf.sevenzipjbinding.IOutFeatureSetLevel
setLevelMethods inherited from interface net.sf.sevenzipjbinding.IOutUpdateArchive
getArchiveFormat, getConnectedInArchive, updateItems