Package org.concordion.ext.excel.conversion.workbook

Source Code of org.concordion.ext.excel.conversion.workbook.WorkbookHelper

package org.concordion.ext.excel.conversion.workbook;

import java.io.IOException;
import java.io.InputStream;

import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import org.concordion.ext.excel.ExcelConversionException;

public class WorkbookHelper {
 
  private InputStream is;
  private String title;
 
  public String getTitle() {
    return title;
  }

  public WorkbookHelper(InputStream is, String title) {
    super();
    this.is = is;
    this.title = title;
  }
 
  public XSSFWorkbook getWorkbook() {
    try {
      return new XSSFWorkbook(is);
    } catch (IOException e) {
      throw new ExcelConversionException(e);
    }
  }
 
 
}
TOP

Related Classes of org.concordion.ext.excel.conversion.workbook.WorkbookHelper

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.