Java 加密Excel文件(打開時需輸入密碼)


收集:author: lifq

package com.XXX.XXX.utils;
import java.io.IOException;

import com.jxcell.CellException;
import com.jxcell.View;

/**
 *
 * @ClassName: DataExcels
 * @Description: Excel加密解密
 * @date: 2016-6-12 上午11:00:31
 * @version
 */
public class EncryptExcelUtil {

    /**
     * 讀取excel,並進行加密
     *
     * @param url
     *            excel文件路徑 例:D:\\word.xls
     * @param pwd
     *            加密密碼
     */
    public static void encrypt(String url, String pwd) {
        View m_view = new View();
        try {
            // 讀取Excel文檔
            m_view.read(url);
            // 設置文檔打開密碼
            m_view.write(url, pwd);
        } catch (CellException e) {
            e.printStackTrace();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    /**
     * excel 解密
     *
     * @return void
     * @author lifq
     * @date 2015-3-13 下午02:15:49
     */
    public static void decrypt(String url, String pwd) {
        View m_view = new View();
        try {
            // read the encrypted excel file
            m_view.read(url, pwd);

            // write without password protected
            m_view.write(url);
        } catch (Exception e) {
            System.out.println(e.getMessage());
        }
    }

    public static void main(String args[]) {
        // 下面1與2 兩個方法請分開執行,可以看到效果
        //
        //1. 把g:\\test.xls 添加打開密碼123
        EncryptExcelUtil.encrypt("f:\\test.xls", "123");
        //2. 把g:\\test.xls 密碼123 去除
        EncryptExcelUtil.decrypt("f:\\test.xls", "123");

    }
}

 

傳送門:加密所需Jar包


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM