Verificare la password utilizzata per proteggere il foglio di lavoro

Verificare la password utilizzata per proteggere il foglio di lavoro

Il metodo Protection.verifyPassword restituisce true se la password specificata corrisponde alla password utilizzata per proteggere il foglio di lavoro fornito, false se la password specificata non corrisponde. Il seguente pezzo di codice utilizza il metodo Protection.verifyPassword in combinazione con la proprietà Protection.isProtectedWithPassword per rilevare la protezione con password e verifica la password.

// 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.getDataDir(VerifyPasswordtoProtectWorksheet.class);
// Create an instance of Workbook and load a spreadsheet
Workbook book = new Workbook(dataDir + "book1.xlsx");
// Access the protected Worksheet
Worksheet sheet = book.getWorksheets().get(0);
// Check if Worksheet is password protected
if (sheet.getProtection().isProtectedWithPassword()) {
// Verify the password used to protect the Worksheet
if (sheet.getProtection().verifyPassword("password")) {
System.out.println("Specified password has matched");
} else {
System.out.println("Specified password has not matched");
}
}