Excel Encryption for XLSX in Java
GemBox.Spreadsheet for Java has been retired
XLSX encryption enables you to securely protect the content of your Excel workbook (XLSX) from unwanted viewers.
Following example shows how to load encrypted XLSX file and how to save workbook as encrypted XLSX file in Java.
Input and output password should be specified in the appropriate text box. If password is empty, file won't be decrypted / encrypted.

import com.gembox.spreadsheet.*;
class Program {
public static void main(String[] args) throws java.io.IOException {
// If using the Professional version, put your serial key below.
SpreadsheetInfo.setLicense("FREE-LIMITED-KEY");
String inputPassword = "%InputPassword%";
String outputPassword = "%OutputPassword%";
XlsxLoadOptions loadOptions = new XlsxLoadOptions();
loadOptions.setPassword(inputPassword);
ExcelFile workbook = ExcelFile.load("%InputFileName%", loadOptions);
XlsxSaveOptions saveOptions = new XlsxSaveOptions();
saveOptions.setPassword(outputPassword);
workbook.save("XLSX Encryption.xlsx", saveOptions);
}
}