All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.github.fartherp.framework.poi.excel.ExcelBuilder Maven / Gradle / Ivy

There is a newer version: 3.0.6
Show newest version
/*
 * Copyright (c) 2017. CK. All rights reserved.
 */

package com.github.fartherp.framework.poi.excel;

import com.github.fartherp.framework.poi.excel.write.ExcelWrite;
import com.github.fartherp.framework.poi.excel.write.FileExcelWrite;
import com.github.fartherp.framework.poi.excel.write.HttpServletResponseExcelWrite;

import javax.servlet.http.HttpServletResponse;
import java.util.List;

/**
 * Created by IntelliJ IDEA.
 *
 * @author: CK
 * @date: 2017/11/25
 */
public class ExcelBuilder {

    @SuppressWarnings("all")
    public static  ExcelWrite buildFile(String[] title, String fileName, List list) {
        ExcelWrite excelWrite = FileExcelWrite.getInstance(title, fileName, list);
        return excelWrite;
    }

    @SuppressWarnings("all")
    public static  ExcelWrite buildHttpServletResponse(String[] title, String fileName, List list, HttpServletResponse response) {
        ExcelWrite excelWrite = HttpServletResponseExcelWrite.getInstance(title, fileName, list, response);
        return excelWrite;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy