Apache POI - 如何使用选项保护工作表?

2022-09-03 13:55:55

我正在使用Apache POI生成Excel文件(2007)。我想要的是保护工作表,但启用了一些选项。通过选项,我的意思是当您尝试保护Excel应用程序中的工作表时的复选框列表(在标签下“允许此工作表的所有用户:”)。具体来说,我想启用“选择锁定/解锁的单元格”,“格式列”,“排序”和“允许自动筛选”。谢谢!:D


答案 1

在 Apache POI 3.9 中,您可以通过启用锁定功能来使用 XSSF 工作表保护。即使你可以留下一些excel对象解锁,因为在下面我遗漏了excel对象(即文本框)解锁,其余的都被锁定了。

 private static void lockAll(Sheet s, XSSFWorkbook workbookx){
    String password= "abcd";
    byte[] pwdBytes = null;
    try {
        pwdBytes  = Hex.decodeHex(password.toCharArray());
    } catch (DecoderException e) {
        e.printStackTrace();  //To change body of catch statement use File | Settings | File Templates.
    }
    XSSFSheet sheet = ((XSSFSheet)s);
    removePivot(s,workbookx);
    sheet.lockDeleteColumns();
    sheet.lockDeleteRows();
    sheet.lockFormatCells();
    sheet.lockFormatColumns();
    sheet.lockFormatRows();
    sheet.lockInsertColumns();
    sheet.lockInsertRows();
    sheet.getCTWorksheet().getSheetProtection().setPassword(pwdBytes);
    for(byte pwdChar :pwdBytes){
        System.out.println(">>> Sheet protected with '" + pwdChar + "'");
    }
    sheet.enableLocking();

    workbookx.lockStructure();

}

答案 2

您可能会遇到无法选择哪些功能的情况,要么是全部,要么是全无。这是目前Apache Poi中的一个已知错误。资料来源:https://issues.apache.org/bugzilla/show_bug.cgi?id=51483

您可以通过使用以下解决方法解决此问题:

  xssfSheet.enableLocking();
  CTSheetProtection sheetProtection = xssfSheet.getCTWorksheet().getSheetProtection();
  sheetProtection.setSelectLockedCells(true); 
  sheetProtection.setSelectUnlockedCells(false); 
  sheetProtection.setFormatCells(true); 
  sheetProtection.setFormatColumns(true); 
  sheetProtection.setFormatRows(true); 
  sheetProtection.setInsertColumns(true); 
  sheetProtection.setInsertRows(true); 
  sheetProtection.setInsertHyperlinks(true); 
  sheetProtection.setDeleteColumns(true); 
  sheetProtection.setDeleteRows(true); 
  sheetProtection.setSort(false); 
  sheetProtection.setAutoFilter(false); 
  sheetProtection.setPivotTables(true); 
  sheetProtection.setObjects(true); 
  sheetProtection.setScenarios(true);

推荐