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

gu.sql2java.excel.JsonExcelGenerator Maven / Gradle / Ivy

There is a newer version: 5.3.2
Show newest version
package gu.sql2java.excel;

import com.alibaba.fastjson.JSONObject;

/**
 * 记录类型为{@link JSONObject}的Excel导出实现类
 * @author guyadong
 *
 */
public class JsonExcelGenerator extends SheetGenerator {
	/**
	 * 构造方法
* * @param iterable * @param includeCoumns * @see SheetGenerator#SheetGenerator(Iterable, Iterable) */ public JsonExcelGenerator(Iterable iterable, Iterable includeCoumns) { super(iterable, includeCoumns); } /** * 构造方法
* * @param iterable * @param includeCoumns * @see SheetGenerator#SheetGenerator(Iterable, String...) */ public JsonExcelGenerator(Iterable iterable, String... includeCoumns) { super(iterable, includeCoumns); } public JsonExcelGenerator(Iterable rows) { super(rows); } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy