public class ZipArchive extends NetObject implements java.lang.AutoCloseable
.NET documentation at https://docs.microsoft.com/en-us/dotnet/api/System.IO.Compression.ZipArchive
Powered by JCOBridge: more info at https://www.jcobridge.com
| Modifier and Type | Field and Description |
|---|---|
static java.lang.String |
assemblyFullName
Fully assembly qualified name: System.IO.Compression, Version=10.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
|
static java.lang.String |
assemblyShortName
Assembly name: System.IO.Compression
|
static java.lang.String |
className
Qualified class name: System.IO.Compression.ZipArchive
|
static JCType |
classType
The type managed from JCOBridge.
|
| Constructor and Description |
|---|
ZipArchive() |
ZipArchive(java.lang.Object instance)
Internal constructor.
|
ZipArchive(Stream stream) |
ZipArchive(Stream stream,
ZipArchiveMode mode) |
ZipArchive(Stream stream,
ZipArchiveMode mode,
boolean leaveOpen) |
ZipArchive(Stream stream,
ZipArchiveMode mode,
boolean leaveOpen,
Encoding entryNameEncoding) |
| Modifier and Type | Method and Description |
|---|---|
static ZipArchive |
cast(IJCOBridgeReflected from)
Try to cast the
IJCOBridgeReflected instance into ZipArchive, a cast assert is made to check if types are compatible. |
void |
close() |
ZipArchiveEntry |
CreateEntry(java.lang.String entryName) |
ZipArchiveEntry |
CreateEntry(java.lang.String entryName,
CompressionLevel compressionLevel) |
void |
Dispose() |
ValueTask |
DisposeAsync() |
java.lang.String |
getComment() |
ZipArchiveEntry |
GetEntry(java.lang.String entryName) |
java.lang.String |
getJCOAssemblyName()
Returns the reflected Assembly name
|
java.lang.String |
getJCOClassName()
Returns the reflected Class name
|
java.lang.Object |
getJCOInstance()
Returns the instantiated class
|
java.lang.String |
getJCOObjectName()
Returns the reflected Class name used to build the object
|
JCType |
getJCOType()
Returns the instantiated class Type
|
ZipArchiveMode |
getMode() |
void |
setComment(java.lang.String Comment) |
void |
setJCOInstance(JCObject instance) |
public static final java.lang.String assemblyFullName
public static final java.lang.String assemblyShortName
public static final java.lang.String className
public ZipArchive()
throws java.lang.Throwable
java.lang.Throwablepublic ZipArchive(java.lang.Object instance)
throws java.lang.Throwable
java.lang.Throwablepublic ZipArchive(Stream stream) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidOperationException, InvalidDataException
public ZipArchive(Stream stream, ZipArchiveMode mode) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidOperationException, InvalidDataException
public ZipArchive(Stream stream, ZipArchiveMode mode, boolean leaveOpen) throws java.lang.Throwable, NotSupportedException, ArgumentException, ArgumentNullException, ArgumentOutOfRangeException, PlatformNotSupportedException, IndexOutOfRangeException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidOperationException, InvalidDataException
public ZipArchive(Stream stream, ZipArchiveMode mode, boolean leaveOpen, Encoding entryNameEncoding) throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException, IndexOutOfRangeException, FormatException, ObjectDisposedException, ArrayTypeMismatchException, IOException, InvalidDataException
public static ZipArchive cast(IJCOBridgeReflected from) throws java.lang.Throwable
IJCOBridgeReflected instance into ZipArchive, a cast assert is made to check if types are compatible.from - IJCOBridgeReflected instance to be castedZipArchive instancejava.lang.Throwable - in case of error during cast operationpublic void close()
throws java.lang.Exception
close in interface java.lang.AutoCloseablejava.lang.Exceptionpublic ZipArchiveEntry CreateEntry(java.lang.String entryName) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, IndexOutOfRangeException, InvalidOperationException, IOException, RankException, ArrayTypeMismatchException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionNotSupportedExceptionObjectDisposedExceptionIndexOutOfRangeExceptionInvalidOperationExceptionIOExceptionRankExceptionArrayTypeMismatchExceptionpublic ZipArchiveEntry CreateEntry(java.lang.String entryName, CompressionLevel compressionLevel) throws java.lang.Throwable, ArgumentNullException, ArgumentException, PlatformNotSupportedException, ArgumentOutOfRangeException, CultureNotFoundException, NotSupportedException, ObjectDisposedException, IndexOutOfRangeException, InvalidOperationException, IOException, RankException, ArrayTypeMismatchException
java.lang.ThrowableArgumentNullExceptionArgumentExceptionPlatformNotSupportedExceptionArgumentOutOfRangeExceptionCultureNotFoundExceptionNotSupportedExceptionObjectDisposedExceptionIndexOutOfRangeExceptionInvalidOperationExceptionIOExceptionRankExceptionArrayTypeMismatchExceptionpublic void Dispose()
throws java.lang.Throwable,
ArgumentOutOfRangeException,
PlatformNotSupportedException,
IndexOutOfRangeException,
RankException,
ArgumentException,
ArrayTypeMismatchException,
IOException,
InvalidOperationException,
InvalidDataException,
ArgumentNullException,
ZLibException,
NotSupportedException,
ObjectDisposedException
java.lang.ThrowableArgumentOutOfRangeExceptionPlatformNotSupportedExceptionIndexOutOfRangeExceptionRankExceptionArgumentExceptionArrayTypeMismatchExceptionIOExceptionInvalidOperationExceptionInvalidDataExceptionArgumentNullExceptionZLibExceptionNotSupportedExceptionObjectDisposedExceptionpublic ValueTask DisposeAsync() throws java.lang.Throwable, ArgumentException, NotSupportedException, InvalidOperationException, ArgumentOutOfRangeException, ArgumentNullException, PlatformNotSupportedException
public java.lang.String getComment()
throws java.lang.Throwable,
ArgumentException,
NotSupportedException,
InvalidOperationException,
ArgumentOutOfRangeException,
ArgumentNullException
java.lang.ThrowableArgumentExceptionNotSupportedExceptionInvalidOperationExceptionArgumentOutOfRangeExceptionArgumentNullExceptionpublic ZipArchiveEntry GetEntry(java.lang.String entryName) throws java.lang.Throwable, ArgumentException, ArgumentOutOfRangeException, PlatformNotSupportedException, NotSupportedException, ObjectDisposedException, InvalidOperationException, RankException, ArrayTypeMismatchException, ArgumentNullException, IndexOutOfRangeException, IOException, InvalidDataException
public java.lang.String getJCOAssemblyName()
IJCOBridgeReflectedgetJCOAssemblyName in interface IJCOBridgeReflectedgetJCOAssemblyName in class NetObjectString representing the Fullname of reflected Assemblypublic java.lang.String getJCOClassName()
IJCOBridgeReflectedgetJCOClassName in interface IJCOBridgeReflectedgetJCOClassName in class NetObjectString representing the Fullname of reflected Classpublic java.lang.Object getJCOInstance()
IJCOBridgeReflectedgetJCOInstance in interface IJCOBridgeReflectedgetJCOInstance in class NetObjectObject representing the CLR instance of the instantiated Classpublic java.lang.String getJCOObjectName()
IJCOBridgeReflectedgetJCOObjectName in interface IJCOBridgeReflectedgetJCOObjectName in class NetObjectString representing the name used to allocated the object
in CLR contextpublic JCType getJCOType()
IJCOBridgeReflectedgetJCOType in interface IJCOBridgeReflectedgetJCOType in class NetObjectJCType representing the CLR Type of the instantiated Classpublic ZipArchiveMode getMode() throws java.lang.Throwable
java.lang.Throwablepublic void setComment(java.lang.String Comment)
throws java.lang.Throwable,
ArgumentNullException,
PlatformNotSupportedException,
NotSupportedException,
ArgumentOutOfRangeException,
IndexOutOfRangeException,
ArgumentException
public void setJCOInstance(JCObject instance)
setJCOInstance in class NetObject