com.cinchapi.concourse.export.excel.ExcelExporter Maven / Gradle / Ivy
/*
* Copyright (c) 2013-2022 Cinchapi Inc.
*
* Licensed 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 com.cinchapi.concourse.export.excel;
import java.io.IOException;
import java.io.OutputStream;
import java.util.Map;
import java.util.Map.Entry;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import com.cinchapi.common.base.CheckedExceptions;
import com.cinchapi.concourse.export.WorkbookExporter;
/**
* A {link WorkbokExporter} for generating Microsoft excel files.
*
* @author Jeff Nelson
*/
public class ExcelExporter extends WorkbookExporter {
/**
* Construct a new instance.
*
* @param output
*/
public ExcelExporter(OutputStream output) {
super(output);
}
@Override
public void exportAll(Map>> data) {
try {
Workbook workbook = WorkbookFactory.create(true);
for (Entry>> entry : data
.entrySet()) {
String name = entry.getKey();
Iterable
© 2015 - 2024 Weber Informatics LLC | Privacy Policy