org.wicketstuff.poi.excel.TableComponentAsXlsHandler Maven / Gradle / Ivy
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may not use this file except in compliance with
* the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.wicketstuff.poi.excel;
import org.apache.poi.hssf.usermodel.HSSFWorkbook;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.wicket.Component;
import org.apache.wicket.markup.html.link.Link;
import org.apache.wicket.markup.html.navigation.paging.IPageable;
import org.apache.wicket.request.IRequestCycle;
import org.apache.wicket.request.IRequestHandler;
import org.apache.wicket.request.resource.ContentDisposition;
import org.apache.wicket.request.resource.IResource;
import org.apache.wicket.request.resource.ResourceStreamResource;
/**
*
* Request handler that respond the specified table component as a XLS file.
*
*
* An possible {@link Link} onClick method implementation seting this handler could be:
*
*
* public void onClick() {
* IRequestHandler handler = new TableComponentAsXlsHandler( table, "fileName.xls");
* RequestCycle.get().scheduleRequestHandlerAfterCurrent(handler);
* }
*
*
* @author Pedro Santos
*/
public class TableComponentAsXlsHandler implements IRequestHandler
{
private Component tableComponent;
private String filename;
private CellExporter cellExporter = new GeneralPurposeExporter();
/**
* @param tableComponent
* @param filename
*/
public TableComponentAsXlsHandler(Component tableComponent, String filename)
{
// cache the table component until the end of requesty
this.tableComponent = tableComponent;
this.filename = filename;
}
public void respond(IRequestCycle requestCycle)
{
try
{
TableParser parser = new TableParser(newSheet(), cellExporter);
if (tableComponent instanceof IPageable)
{
IPageable pageable = (IPageable)tableComponent;
for (int i = 0; i < pageable.getPageCount(); i++)
{
pageable.setCurrentPage(i);
parser.parse(tableComponent);
}
}
else
{
parser.parse(tableComponent);
}
XlsStream xlsStream = new XlsStream(parser.getSheet().getWorkbook());
ResourceStreamResource resource = new ResourceStreamResource(xlsStream);
resource.setFileName(filename);
resource.setContentDisposition(ContentDisposition.ATTACHMENT);
IResource.Attributes a = new IResource.Attributes(requestCycle.getRequest(),
requestCycle.getResponse());
resource.respond(a);
}
catch (Exception e)
{
throw new RuntimeException("Error while generating a xls file to table component", e);
}
}
public void detach(IRequestCycle requestCycle)
{
tableComponent = null;
}
/**
* Create the sheet in where component table data will be set
*
* @return a new {@link Sheet} to receive the table component data
*/
protected Sheet newSheet()
{
return new HSSFWorkbook().createSheet("data");
}
/**
* Set the exporter strategy to be used by this handler. The default is
* {@link GeneralPurposeExporter}
*
* @see CellExporter
* @param cellExporter
*/
public void setCellExporter(CellExporter cellExporter)
{
this.cellExporter = cellExporter;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy