]> source.dussan.org Git - poi.git/blob
7a3ad6b02237cf2ab650240393d5b5e38ccbf5a7
[poi.git] /
1 /*
2  *  ====================================================================
3  *    Licensed to the Apache Software Foundation (ASF) under one or more
4  *    contributor license agreements.  See the NOTICE file distributed with
5  *    this work for additional information regarding copyright ownership.
6  *    The ASF licenses this file to You under the Apache License, Version 2.0
7  *    (the "License"); you may not use this file except in compliance with
8  *    the License.  You may obtain a copy of the License at
9  *
10  *        http://www.apache.org/licenses/LICENSE-2.0
11  *
12  *    Unless required by applicable law or agreed to in writing, software
13  *    distributed under the License is distributed on an "AS IS" BASIS,
14  *    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15  *    See the License for the specific language governing permissions and
16  *    limitations under the License.
17  * ====================================================================
18  */
19
20 package org.apache.poi.xssf.eventusermodel.examples;
21
22 import java.io.InputStream;
23
24 import org.apache.poi.openxml4j.opc.OPCPackage;
25 import org.apache.poi.poifs.crypt.temp.AesZipFileZipEntrySource;
26 import org.apache.poi.xssf.eventusermodel.XSSFReader;
27 import org.apache.poi.xssf.eventusermodel.XSSFReader.SheetIterator;
28 import org.apache.poi.xssf.usermodel.examples.LoadPasswordProtectedXlsx;
29
30 /**
31  * An example that loads a password protected workbook and counts the sheets.
32  * The example highlights how to do this in streaming way.
33  * <p><ul>
34  * <li>The example demonstrates that all temp files are removed.
35  * <li><code>AesZipFileZipEntrySource</code> is used to ensure that temp files are encrypted.
36  * </ul><p>
37  */
38 @SuppressWarnings({"java:S106","java:S4823","java:S1192"})
39 public final class LoadPasswordProtectedXlsxStreaming {
40
41     private LoadPasswordProtectedXlsxStreaming() {}
42
43     public static void main(String[] args) throws Exception {
44         LoadPasswordProtectedXlsx.execute(args, LoadPasswordProtectedXlsxStreaming::printSheetCount);
45     }
46
47     private static void printSheetCount(final InputStream inputStream) throws Exception {
48         try (AesZipFileZipEntrySource source = AesZipFileZipEntrySource.createZipEntrySource(inputStream);
49              OPCPackage pkg = OPCPackage.open(source)) {
50             XSSFReader reader = new XSSFReader(pkg);
51             SheetIterator iter = (SheetIterator)reader.getSheetsData();
52             int count = 0;
53             while(iter.hasNext()) {
54                 iter.next();
55                 count++;
56             }
57             System.out.println("sheet count: " + count);
58         }
59     }
60 }