Chiffrer le classeur à l aide d Aspose.Cells

Aspose.Cells - Chiffrer le classeur

L’exemple suivant montre comment vous pouvez chiffrer / protéger par mot de passe un fichier Excel à l’aide de l’API Aspose.Cells.

Java

 //Instantiate a Workbook object by excel file path

Workbook workbook = new Workbook(dataDir + "book1.xls");

//Password protect the file.

workbook.getSettings().setPassword("1234");

//Specify XOR encryption type.

workbook.setEncryptionOptions(EncryptionType.XOR, 40);

//Specify Strong Encryption type (RC4,Microsoft Strong Cryptographic Provider).

workbook.setEncryptionOptions(EncryptionType.STRONG_CRYPTOGRAPHIC_PROVIDER, 128);

//Save the excel file.

workbook.save(dataDir + "AsposeEncryptedWorkBook.xls");

Télécharger le code en cours d’exécution

Télécharger le code source d’exemple