Java tutorial
/* * This program is free software: you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation, either version 3 of the License, or * (at your option) any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program. If not, see <http://www.gnu.org/licenses/>. */ /* * ExcelSpreadSheetHandler.java * Copyright (C) 2011-2018 University of Waikato, Hamilton, New Zealand */ package adams.gui.tools.previewbrowser; import adams.core.Range; import adams.core.io.FileUtils; import adams.data.io.input.ExcelSpreadSheetReader; import adams.data.spreadsheet.SpreadSheet; import org.apache.poi.ss.usermodel.Workbook; import org.apache.poi.ss.usermodel.WorkbookFactory; import java.io.BufferedInputStream; import java.io.File; import java.io.FileInputStream; import java.util.ArrayList; import java.util.List; import java.util.logging.Level; /** <!-- globalinfo-start --> * Displays the following spreadsheet types: xls,xlsx * <br><br> <!-- globalinfo-end --> * <!-- options-start --> * Valid options are: <br><br> * * <pre>-D <int> (property: debugLevel) * The greater the number the more additional info the scheme may output to * the console (0 = off). * default: 0 * minimum: 0 * </pre> * <!-- options-end --> * * @author fracpete (fracpete at waikato dot ac dot nz) */ public class ExcelSpreadSheetHandler extends AbstractSpreadSheetHandler { /** for serialization. */ private static final long serialVersionUID = -3962259305718630395L; /** * Returns the list of extensions (without dot) that this handler can * take care of. * * @return the list of extensions (no dot) */ @Override public String[] getExtensions() { return new String[] { "xls", "xlsx" }; } /** * Determines the number of sheets in the spreadsheet file. * * @param file the spreadsheet file to check * @return the number of sheets */ protected int getSheetCount(File file) { int result; Workbook workbook; FileInputStream fis; BufferedInputStream input; input = null; fis = null; try { fis = new FileInputStream(file.getAbsoluteFile()); input = new BufferedInputStream(fis); workbook = WorkbookFactory.create(input); result = workbook.getNumberOfSheets(); } catch (Exception e) { result = 0; getLogger().log(Level.SEVERE, "Failed to determine sheet count for '" + file + "':", e); } finally { FileUtils.closeQuietly(input); FileUtils.closeQuietly(fis); } return result; } /** * Reads all the individual spreadsheets from the file. * * @param file the file to read * @return the spreadsheet objects that were read from the file */ @Override protected SpreadSheet[] readAll(File file) { List<SpreadSheet> result; ExcelSpreadSheetReader reader; reader = new ExcelSpreadSheetReader(); reader.setSheetRange(new Range(Range.ALL)); result = reader.readRange(file); if (result == null) result = new ArrayList<>(); return result.toArray(new SpreadSheet[result.size()]); } }