|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Object org.springframework.context.support.ApplicationObjectSupport org.springframework.web.context.support.WebApplicationObjectSupport org.springframework.web.servlet.view.AbstractView org.springframework.web.servlet.view.document.AbstractExcelView
public abstract class AbstractExcelView
Convenient superclass for Excel document views.
Properties:
The file will be searched with locations in the following order:
For working with the workbook in the subclass, see Jakarta's POI site
As an example, you can try this snippet:
protected void buildExcelDocument( Map model, HSSFWorkbook workbook, HttpServletRequest request, HttpServletResponse response) { // Go to the first sheet. // getSheetAt: only if workbook is created from an existing document // HSSFSheet sheet = workbook.getSheetAt(0); HSSFSheet sheet = workbook.createSheet("Spring"); sheet.setDefaultColumnWidth(12); // Write a text at A1. HSSFCell cell = getCell(sheet, 0, 0); setText(cell, "Spring POI test"); // Write the current date at A2. HSSFCellStyle dateStyle = workbook.createCellStyle(); dateStyle.setDataFormat(HSSFDataFormat.getBuiltinFormat("m/d/yy")); cell = getCell(sheet, 1, 0); cell.setCellValue(new Date()); cell.setCellStyle(dateStyle); // Write a number at A3 getCell(sheet, 2, 0).setCellValue(458); // Write a range of numbers. HSSFRow sheetRow = sheet.createRow(3); for (short i = 0; i < 10; i++) { sheetRow.createCell(i).setCellValue(i * 10); } }This class is similar to the AbstractPdfView class in usage style.
AbstractPdfView
Field Summary |
---|
Fields inherited from class org.springframework.web.servlet.view.AbstractView |
---|
DEFAULT_CONTENT_TYPE |
Fields inherited from class org.springframework.context.support.ApplicationObjectSupport |
---|
logger |
Constructor Summary | |
---|---|
AbstractExcelView()
Default Constructor. |
Method Summary | |
---|---|
protected abstract void |
buildExcelDocument(Map model,
HSSFWorkbook workbook,
HttpServletRequest request,
HttpServletResponse response)
Subclasses must implement this method to create an Excel HSSFWorkbook document, given the model. |
protected HSSFCell |
getCell(HSSFSheet sheet,
int row,
int col)
Convenient method to obtain the cell in the given sheet, row and column. |
protected HSSFWorkbook |
getTemplateSource(String url,
HttpServletRequest request)
Creates the workbook from an existing XLS document. |
protected void |
renderMergedOutputModel(Map model,
HttpServletRequest request,
HttpServletResponse response)
Renders the Excel view, given the specified model. |
protected void |
setText(HSSFCell cell,
String text)
Convenient method to set a String as text content in a cell. |
void |
setUrl(String url)
Set the URL of the Excel workbook source, without localization part nor extension. |
Methods inherited from class org.springframework.web.servlet.view.AbstractView |
---|
addStaticAttribute, createRequestContext, exposeModelAsRequestAttributes, getAttributesMap, getBeanName, getContentType, getRequestContextAttribute, getStaticAttributes, render, setAttributes, setAttributesCSV, setAttributesMap, setBeanName, setContentType, setRequestContextAttribute, toString |
Methods inherited from class org.springframework.web.context.support.WebApplicationObjectSupport |
---|
getServletContext, getTempDir, getWebApplicationContext, isContextRequired, setServletContext |
Methods inherited from class org.springframework.context.support.ApplicationObjectSupport |
---|
getApplicationContext, getMessageSourceAccessor, initApplicationContext, requiredContextClass, setApplicationContext |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Constructor Detail |
---|
public AbstractExcelView()
Method Detail |
---|
public void setUrl(String url)
protected final void renderMergedOutputModel(Map model, HttpServletRequest request, HttpServletResponse response) throws Exception
renderMergedOutputModel
in class AbstractView
model
- combined output Map (never null
),
with dynamic values taking precedence over static attributesrequest
- current HTTP requestresponse
- current HTTP response
Exception
- if rendering failedprotected HSSFWorkbook getTemplateSource(String url, HttpServletRequest request) throws Exception
url
- the URL of the Excel template without localization part nor extensionrequest
- current HTTP request
Exception
- in case of failureprotected abstract void buildExcelDocument(Map model, HSSFWorkbook workbook, HttpServletRequest request, HttpServletResponse response) throws Exception
model
- the model Mapworkbook
- the Excel workbook to completerequest
- in case we need locale etc. Shouldn't look at attributes.response
- in case we need to set cookies. Shouldn't write to it.
Exception
protected HSSFCell getCell(HSSFSheet sheet, int row, int col)
Creates the row and the cell if they still doesn't already exist. Thus, the column can be passed as an int, the method making the needed downcasts.
sheet
- a sheet object. The first sheet is usually obtained by workbook.getSheetAt(0)row
- thr row numbercol
- the column number
protected void setText(HSSFCell cell, String text)
cell
- the cell in which the text must be puttext
- the text to put in the cell
|
The Spring Framework | |||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |