Browse our Products

Aspose.ZIP for Java 24.6 Release Notes

All Changes

KeySummaryIssue Type
ZIPJAVA-107Add support for ZStandard format.Feature
ZIPJAVA-108Add support for Cpio format.Feature
ZIPJAVA-109Failed to pass org.bouncycastle:bc-fips’s internal checking - FipsOperationError: Module checksum failed.Bug
ZIPJAVA-110Add support for Cab format.Feature
ZIPJAVA-112Add support for Wim format.Feature
ZIPJAVA-114Add support for XAR format.Feature
ZIPJAVA-115NotImplementedException is thrown while trying to save an archive to an OutputStream.Bug
ZIPNET-1151Extract ZIP with Implode compression method.Feature

Public API and Backwards Incompatible Changes

The following public types were added:Description
com.aspose.zip.CabArchiveThis class represents cab archive file.
com.aspose.zip.CabEntryRepresents single file within cab archive.
com.aspose.zip.CpioArchiveThis class represents cpio archive file.
com.aspose.zip.CpioEntryRepresents single file within cpio archive.
com.aspose.zip.WimArchiveThis class represents wim archive file.
com.aspose.zip.WimEntryRepresents single file or directory within wim image.
com.aspose.zip.WimFileEntryRepresents single file within wim archive.
com.aspose.zip.WimDirectoryEntryRepresents single directory within wim archive.
com.aspose.zip.WimImageRepresents single image within wim archive.
com.aspose.zip.XarArchiveThis class represents xar archive file.
com.aspose.zip.XarEntryRepresents single entry within xar archive.
com.aspose.zip.XarFileEntryRepresents file entry within xar archive.
com.aspose.zip.XarDirectoryEntryRepresents directory entry within xar archive.
com.aspose.zip.XarCompressionSettingsSettings needed for compressor to work.
com.aspose.zip.XarStoreCompressionSettingsSettings for Store compression method.
com.aspose.zip.XarBzip2CompressionSettingsSettings for Bzip2 compression method.
com.aspose.zip.XarZlibCompressionSettingsSettings for Zlib compression method.
com.aspose.zip.ZstandardArchiveThis class represents Zstandard archive file.
com.aspose.zip.ZstandardCompressionSettingsSettings for Zstandard compression method.
The following public methods were added:Description
com.aspose.zip.Bzip2Archive.setSource( com.aspose.zip.CpioArchive, com.aspose.zip.CpioFormat )Sets the content to be compressed within the archive.
com.aspose.zip.TarArchive.fromZstandard( java.io.InputStream )Extracts supplied Zstandard archive and composes com.aspose.zip.TarArchive from extracted data.
com.aspose.zip.TarArchive.fromZstandard( String )Extracts supplied Zstandard archive and composes TarArchive from extracted data.
com.aspose.zip.TarArchive.saveZstandard( java.io.OutputStream , com.aspose.zip.TarFormat )Saves archive to the stream with Zstandard compression.
com.aspose.zip.TarArchive.saveZstandard( String , com.aspose.zip.TarFormat )Saves archive to the file by path with Zstandard compression.
The following public enumerations were added:Description
com.aspose.zip.CpioFormatEnumeration with supported formats of cpio.