Crittografa e Decrittografa file Excel

Usare MS Excel

In MS Excel (ad esempio MS Excel 2003), per implementare le impostazioni di crittografia del file, si può provare:

  • Dal menu Strumenti, selezionare Opzioni, e quindi selezionare la scheda Sicurezza.
  • Inserire la Password per aprire e fare clic sul pulsante Avanzate.
  • Scegliere il tipo di crittografia e confermare la password.

todo:image_alt_text

Figura: Dialogo Opzioni

todo:image_alt_text

Figura: Dialogo Tipo di Crittografia

Crittografare il file Excel

L’esempio seguente mostra come è possibile crittografare / proteggere con password un file Excel utilizzando l’API di Aspose.Cells.

Codice di Esempio:

// For complete examples and data files, please go to https://github.com/aspose-cells/Aspose.Cells-for-Java
// The path to the documents directory.
String dataDir = Utils.getSharedDataDir(EncryptingFiles.class) + "loading_saving/";
// 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 encrption 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 + "EncryptingFiles_out.xls");
// Print message
System.out.println("Encryption applied successfully on output file.");

Decrittografare un file Excel con Aspose.Cells

È molto semplice aprire un file Excel protetto da password e decifrarlo usando l’API Aspose.Cells come segue:

//Open encrypted file with password.
LoadOptions loadOptions = new LoadOptions();
loadOptions.setPassword("password");
Workbook workbook = new Workbook("Book1.xlsx", loadOptions);
//Remove password.
workbook.getSettings().setPassword(null);
//Save the file.
workbook.save("Book1.xlsx");