CabLoadOptions
Contents
[
Hide
]Inheritance: java.lang.Object
public class CabLoadOptions
Options with which archive is loaded from a compressed file.
Allows to cancel extraction for .NET Framework 4.0 and above.
Constructors
Constructor | Description |
---|---|
CabLoadOptions() |
Methods
Method | Description |
---|---|
setCancellationFlag(CancellationFlag value) | Sets a cancellation flag used to cancel the extraction operation. |
CabLoadOptions()
public CabLoadOptions()
setCancellationFlag(CancellationFlag value)
public void setCancellationFlag(CancellationFlag value)
Sets a cancellation flag used to cancel the extraction operation.
Cancel CAB archive extraction after a certain time.
try (CancellationFlag cf = new CancellationFlag()) {
cf.cancelAfter(TimeUnit.SECONDS.toMillis(60));
CabLoadOptions options = new CabLoadOptions();
options.setCancellationFlag(cf);
try (CabArchive a = new CabArchive("big.cab", options)) {
try {
a.getEntries().get(0).extract("data.bin");
} catch (OperationCanceledException e) {
System.out.println("Extraction was cancelled after 60 seconds");
}
}
}
Cancellation mostly results in some data not being extracted.
Parameters:
Parameter | Type | Description |
---|---|---|
value | CancellationFlag | a cancellation flag used to cancel the extraction operation. |