Skip to main content

Encrypt and Decrypt Excel Files in Java


This blog demonstrates how to encrypt and decrypt Excel Files in Java using Free Spire.XLS for Java library.
Installation
First of all, you need to download spire.xls.jar and add it to your project as dependency. If you use maven, you need to add the following dependencies to your pom.xml file.
<repositories>
        <repository>
            <id>com.e-iceblue</id>
            <name>e-iceblue</name>
            <url>http://repo.e-iceblue.com/nexus/content/groups/public/</url>
        </repository>
</repositories>
<dependencies>
    <dependency>
        <groupId>e-iceblue</groupId>
        <artifactId>spire.xls.free</artifactId>
        <version>2.2.0</version>
    </dependency>
</dependencies>

Encrypt Excel file
Free Spire.XLS for Java supports the following encrypt options:
  • Encrypt the whole excel file with password
  • Encrypt a certain worksheet with password
  • Lock particular cells in a worksheet

Encrypt the whole excel file with password
import com.spire.xls.ExcelVersion;
import com.spire.xls.Workbook;

public class EncryptExcel {
   
public static void main(String[] args){
       
//Create a workbook instance and load an Excel file
       
Workbook workbook = new Workbook();
        workbook.loadFromFile(
"Sample.xlsx");

        
//Encrypt the file with password
       
workbook.protect("pwd");

       
//Save the file
       
workbook.saveToFile("EncryptExcelFile.xlsx", ExcelVersion.Version2013);
    }
}


Encrypt a certain worksheet with password
import com.spire.xls.ExcelVersion;
import com.spire.xls.SheetProtectionType;
import com.spire.xls.Workbook;
import com.spire.xls.Worksheet;

import java.util.EnumSet;

public class EncryptExcel {

   
public static void main(String[] args){

        //Create a workbook and load an Excel file
       
Workbook workbook = new Workbook();
        workbook.loadFromFile(
"Sample.xlsx");

       
//Get the first worksheet
       
Worksheet sheet = workbook.getWorksheets().get(0);

       
//Encrypt the first sheet with password
       
sheet.protect("pwd", EnumSet.of(SheetProtectionType.All));

       
//Save the file
       
workbook.saveToFile("EncryptWorksheet.xlsx", ExcelVersion.Version2013);
    }
}


Lock particular cells in a worksheet
import com.spire.xls.ExcelVersion;
import com.spire.xls.SheetProtectionType;
import com.spire.xls.Workbook;
import com.spire.xls.Worksheet;

import java.util.EnumSet;

public class EncryptExcel {
   
public static void main(String[] args){
        //Create a workbook instance and load an Excel file
       
Workbook workbook = new Workbook();
        workbook.loadFromFile(
"Sample.xlsx");

       
//Get the first worksheet
       
Worksheet sheet = workbook.getWorksheets().get(0);

       
//Lock a particular cell
       
sheet.getCellRange("B3").getCellStyle().setLocked(true);

       
//Encrypt the worksheet
       
sheet.protect("TestPassword", EnumSet.of(SheetProtectionType.All));

       
//Save the file
       
workbook.saveToFile("output/ProtectCell.xlsx", ExcelVersion.Version2010);
    }
}


Decrypt Excel file
We can decrypt an Excel file as well as decrypt an Excel worksheet.
The following example shows how to decrypt an Excel file:
import com.spire.xls.Workbook;

public class DecryptExcel {
   
public static void main(String[] args){
        //Create a workbook
       
Workbook workbook = new Workbook();

       
//Load an Excel file with password
       
workbook.setOpenPassword("pwd");
        workbook.loadFromFile(
"EncryptExcelFile.xlsx");

       
//Decrypt the Excel file
       
workbook.unProtect();

       
//Save the file
       
workbook.saveToFile("DecryptExcelFile.xlsx");
    }
}


The following example shows how to decrypt an Excel worksheet:
import com.spire.xls.Workbook;
import com.spire.xls.Worksheet;

public class EncryptExcel {
   
public static void main(String[] args){
        //Create a workbook instance and load an Excel file with decrypted worksheet
       
Workbook workbook = new Workbook();
        workbook.loadFromFile(
"EncryptWorksheet.xlsx");

       
//Get the first worksheet
       
Worksheet sheet = workbook.getWorksheets().get(0);

       
//Decrypt the first worksheet
       
sheet.unprotect("pwd");

       
//Save the file
       
workbook.saveToFile("DecryptWorksheet.xlsx");
    }
}

Comments

Popular posts from this blog

3 Ways to Generate Word Documents from Templates in Java

A template is a document with pre-applied formatting like styles, tabs, line spacing and so on. You can quickly generate a batch of documents with the same structure based on the template. In this article, I am going to show you the different ways to generate Word documents from templates programmatically in Java using Free Spire.Doc for Java library. Prerequisite First of all, you need to add needed dependencies for including Free Spire.Doc for Java into your Java project. There are two ways to do that. If you use maven, you need to add the following code to your project’s pom.xml file. <repositories>               <repository>                   <id>com.e-iceblue</id>                   <name>e-iceblue</name> ...

Add and Delete Digital Signature in Excel with Java

A digital signature is a type of electronic signature that helps verify the authenticity of documents. In this blog, I will show you how to sign an Excel file with digital signature and delete the digital signature from the result Excel file programmatically in Java using Spire.XLS for Java API. Add maven dependencies Before coding, you need to add needed dependencies for including Spire.XLS for Java into your Java project. <repositories>             <repository>                 <id>com.e-iceblue</id>                 <name>e-iceblue</name>                 <url>http: //repo.e-iceblue.com/nexus/content/groups/public/</url>    ...

Insert and Extract OLE objects in Word in Java

You can use OLE (Object Linking and Embedding) to include content from other programs, such as another Word document, an Excel or PowerPoint document to an existing Word document. This article demonstrates how to insert and extract embedded OLE objects in a Word document in Java by using Free Spire.Doc for Java API.   Add dependencies First of all, you need to add needed dependencies for including Free Spire.Doc for Java into your Java project. There are two ways to do that. If you use maven, you need to add the following code to your project’s pom.xml file.     <repositories>               <repository>                   <id>com.e-iceblue</id>                   <name>e-iceblue</name>     ...