ArjLoadOptions

Inheritance: java.lang.Object

public class ArjLoadOptions

Options with which archive is loaded from a compressed file.

In the .NET Framework 4.0 and above, can be used to cancel extraction.

Constructors

ConstructorDescription
ArjLoadOptions()

Methods

MethodDescription
setCancellationFlag(CancellationFlag value)Sets a cancellation flag used to cancel the extraction operation.

ArjLoadOptions()

public ArjLoadOptions()

setCancellationFlag(CancellationFlag value)

public void setCancellationFlag(CancellationFlag value)

Sets a cancellation flag used to cancel the extraction operation.

Cancel ARJ archive extraction after a certain time.


     try (CancellationFlag cf = new CancellationFlag()) {
         cf.cancelAfter(TimeUnit.SECONDS.toMillis(60));
         ArjLoadOptions options = new ArjLoadOptions();
         options.setCancellationFlag(cf);
         try (ArjArchive a = new ArjArchive("big.arj", 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:

ParameterTypeDescription
valueCancellationFlaga cancellation flag used to cancel the extraction operation.