类 AbstractXlsxView

java.lang.Object
cn.taketoday.context.support.ApplicationObjectSupport
所有已实现的接口:
cn.taketoday.beans.factory.Aware, cn.taketoday.beans.factory.BeanNameAware, cn.taketoday.context.ApplicationContextAware, View
直接已知子类:
AbstractXlsxStreamingView

public abstract class AbstractXlsxView extends AbstractXlsView
Convenient superclass for Excel document views in the Office 2007 XLSX format (as supported by POI-OOXML). Compatible with Apache POI 3.5 and higher.

For working with the workbook in subclasses, see Apache's POI site.

从以下版本开始:
4.0
作者:
Juergen Hoeller
  • 构造器详细资料

    • AbstractXlsxView

      public AbstractXlsxView()
      Default Constructor.

      Sets the content type of the view to "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet".

  • 方法详细资料

    • createWorkbook

      protected org.apache.poi.ss.usermodel.Workbook createWorkbook(Map<String,Object> model, RequestContext request)
      This implementation creates an XSSFWorkbook for the XLSX format.
      覆盖:
      createWorkbook 在类中 AbstractXlsView
      参数:
      model - the model Map
      request - current HTTP request (for taking the URL or headers into account)
      返回:
      the new Workbook instance