- write(String, List<List<String>>, List<List<Object>>) - Static method in class com.github.ciweigg.EasyExcelUtil
-
无模板写文件
- write(String, List<List<String>>, List<List<Object>>, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
无模板写文件
- write(String, Class<T>, List<T>) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件
- write(String, Class<T>, List<T>, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件
- write(String, Class<T>, List<T>, WriteHandler, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件
- write(OutputStream, Class<T>, List<T>, WriteHandler, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件
- write(List<List<String>>, List<T>, String) - Method in class com.github.ciweigg.EasyExcelWriterFactory
-
链式自定义表头写入
- write(List<List<String>>, String, BaseMapper<T>, Wrapper<T>, Page<T>) - Method in class com.github.ciweigg.EasyExcelWriterFactory
-
链式自定义表头写入(mybatis plus)
根据分页信息和查询条件分页写入数据(如果页数从2开始 那么第一页的数据不会写入excel 会从当前分页信息开始的页数查询)
- writeExclude(String, Class<T>, List<T>, Set<String>, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件(排除某些字段)
- writeInclude(String, Class<T>, List<T>, Set<String>, Integer, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
按模板写文件(包含某些字段)
- writeModel(Class<T>, List<T>, String) - Method in class com.github.ciweigg.EasyExcelWriterFactory
-
链式模板表头写入
- writeModel(Class, String, BaseMapper, Wrapper, Page) - Method in class com.github.ciweigg.EasyExcelWriterFactory
-
链式模板表头写入(mybatis plus)
根据分页信息和查询条件分页写入数据(如果页数从2开始 那么第一页的数据不会写入excel 会从当前分页信息开始的页数查询)
- writeTemplate(String, String, Class<T>, List<T>) - Static method in class com.github.ciweigg.EasyExcelUtil
-
根据excel模板文件写入文件
- writeTemplate(String, String, List<T>) - Static method in class com.github.ciweigg.EasyExcelUtil
-
根据excel模板文件写入文件
- writeWithSheets(OutputStream) - Static method in class com.github.ciweigg.EasyExcelUtil
-
多个sheet页的数据链式写入
ExcelUtil.writeWithSheets(outputStream)
.writeModel(ExcelModel.class, excelModelList, "sheetName1")
.write(headData, data,"sheetName2")
.finish();
- writeWithSheets(File) - Static method in class com.github.ciweigg.EasyExcelUtil
-
多个sheet页的数据链式写入
ExcelUtil.writeWithSheets(file)
.writeModel(ExcelModel.class, excelModelList, "sheetName1")
.write(headData, data,"sheetName2")
.finish();
- writeWithSheets(String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
多个sheet页的数据链式写入
ExcelUtil.writeWithSheets(filePath)
.writeModel(ExcelModel.class, excelModelList, "sheetName1")
.write(headData, data,"sheetName2")
.finish();
- writeWithSheetsWeb(HttpServletResponse, String) - Static method in class com.github.ciweigg.EasyExcelUtil
-
多个sheet页的数据链式写入(失败了会返回一个有部分数据的Excel)
ExcelUtil.writeWithSheets(response, exportFileName)
.writeModel(ExcelModel.class, excelModelList, "sheetName1")
.write(headData, data,"sheetName2")
.finish();
- writeWithSheetsWeb(HttpServletResponse, String, SheetWriteHandler) - Static method in class com.github.ciweigg.EasyExcelUtil
-
多个sheet页的数据链式写入(失败了会返回一个有部分数据的Excel)
ExcelUtil.writeWithSheets(response, exportFileName)
.writeModel(ExcelModel.class, excelModelList, "sheetName1")
.write(headData, data,"sheetName2")
.finish();