package com.ruoyi.common.core.utils.poi;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.lang.reflect.Method;
import java.lang.reflect.ParameterizedType;
import java.math.BigDecimal;
import java.text.DecimalFormat;
import java.time.LocalDate;
import java.time.LocalDateTime;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collection;
import java.util.Comparator;
import java.util.Date;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.stream.Collectors;
import javax.servlet.http.HttpServletResponse;
import org.apache.commons.lang3.ArrayUtils;
import org.apache.commons.lang3.RegExUtils;
import org.apache.commons.lang3.reflect.FieldUtils;
import org.apache.poi.ss.usermodel.BorderStyle;
import org.apache.poi.ss.usermodel.Cell;
import org.apache.poi.ss.usermodel.CellStyle;
import org.apache.poi.ss.usermodel.CellType;
import org.apache.poi.ss.usermodel.ClientAnchor;
import org.apache.poi.ss.usermodel.DataFormat;
import org.apache.poi.ss.usermodel.DataValidation;
import org.apache.poi.ss.usermodel.DataValidationConstraint;
import org.apache.poi.ss.usermodel.DataValidationHelper;
import org.apache.poi.ss.usermodel.DateUtil;
import org.apache.poi.ss.usermodel.Drawing;
import org.apache.poi.ss.usermodel.FillPatternType;
import org.apache.poi.ss.usermodel.Font;
import org.apache.poi.ss.usermodel.HorizontalAlignment;
import org.apache.poi.ss.usermodel.IndexedColors;
import org.apache.poi.ss.usermodel.Name;
import org.apache.poi.ss.usermodel.Row;
import org.apache.poi.ss.usermodel.Sheet;
import org.apache.poi.ss.usermodel.VerticalAlignment;
import org.apache.poi.ss.usermodel.Workbook;
import org.apache.poi.ss.usermodel.WorkbookFactory;
import org.apache.poi.ss.util.CellRangeAddress;
import org.apache.poi.ss.util.CellRangeAddressList;
import org.apache.poi.util.IOUtils;
import org.apache.poi.xssf.streaming.SXSSFWorkbook;
import org.apache.poi.xssf.usermodel.XSSFClientAnchor;
import org.apache.poi.xssf.usermodel.XSSFDataValidation;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
import com.ruoyi.common.core.annotation.Excel;
import com.ruoyi.common.core.annotation.Excel.ColumnType;
import com.ruoyi.common.core.annotation.Excel.Type;
import com.ruoyi.common.core.annotation.Excels;
import com.ruoyi.common.core.exception.UtilException;
import com.ruoyi.common.core.text.Convert;
import com.ruoyi.common.core.utils.DateUtils;
import com.ruoyi.common.core.utils.StringUtils;
import com.ruoyi.common.core.utils.file.FileTypeUtils;
import com.ruoyi.common.core.utils.file.ImageUtils;
import com.ruoyi.common.core.utils.reflect.ReflectUtils;
/**
* Excel相关处理
*
* @author ruoyi
*/
public class ExcelUtil<T>
{
private static final Logger log = LoggerFactory.getLogger(ExcelUtil.class);
public static final String FORMULA_REGEX_STR = "=|-|\\+|@";
public static final String[] FORMULA_STR = { "=", "-", "+", "@" };
/**
* Excel sheet最大行数,默认65536
*/
public static final int sheetSize = 65536;
/**
* 工作表名称
*/
private String sheetName;
/**
* 导出类型(EXPORT:导出数据;IMPORT:导入模板)
*/
private Type type;
/**
* 工作薄对象
*/
private Workbook wb;
/**
* 工作表对象
*/
private Sheet sheet;
/**
* 样式列表
*/
private Map<String, CellStyle> styles;
/**
* 导入导出数据列表
*/
private List<T> list;
/**
* 注解列表
*/
private List<Object[]> fields;
/**
* 当前行号
*/
private int rownum;
/**
* 标题
*/
private String title;
/**
* 最大高度
*/
private short maxHeight;
/**
* 合并后最后行数
*/
private int subMergedLastRowNum = 0;
/**
* 合并后开始行数
*/
private int subMergedFirstRowNum = 1;
/**
* 对象的子列表方法
*/
private Method subMethod;
/**
* 对象的子列表属性
*/
private List<Field> subFields;
/**
* 统计列表
*/
private Map<Integer, Double> statistics = new HashMap<Integer, Double>();
/**
* 数字格式
*/
private static final DecimalFormat DOUBLE_FORMAT = new DecimalFormat("######0.00");
/**
* 实体对象
*/
public Class<T> clazz;
/**
* 需要排除列属性
*/
public String[] excludeFields;
public ExcelUtil(Class<T> clazz)
{
this.clazz = clazz;
}
/**
* 隐藏Excel中列属性
*
* @param fields 列属性名 示例[单个"name"/多个"id","name"]
* @throws Exception
*/
public void hideColumn(String... fields)
{
this.excludeFields = fields;
}
public void init(List<T> list, String sheetName, String title, Type type)
{
if (list == null)
{
list = new ArrayList<T>();
}
this.list = list;
this.sheetName = sheetName;
this.type = type;
this.title = title;
createExcelField();
createWorkbook();
createTitle();
createSubHead();
}
/**
* 创建excel第一行标题
*/
public void createTitle()
{
if (StringUtils.isNotEmpty(title))
{
subMergedFirstRowNum++;
subMergedLastRowNum++;
int titleLastCol = this.fields.size() - 1;
if (isSubList())
{
titleLastCol = titleLastCol + subFields.size() - 1;
}
Row titleRow = sheet.createRow(rownum == 0 ? rownum++ : 0);
titleRow.setHeightInPoints(30);
Cell titleCell = titleRow.createCell(0);
titleCell.setCellStyle(styles.get("title"));
titleCell.setCellValue(title);
sheet.addMergedRegion(new CellRangeAddress(titleRow.getRowNum(), titleRow.getRowNum(), titleRow.getRowNum(), titleLastCol));
}
}
/**
* 创建对象的子列表名称
*/
public void createSubHead()
{
if (isSubList())
{
subMergedFirstRowNum++;
subMergedLastRowNum++;
Row subRow = sheet.createRow(rownum);
int excelNum = 0;
for (Object[] objects : fields)
{
Excel attr = (Excel) objects[1];
Cell headCell1 = subRow.createCell(excelNum);
headCell1.setCellValue(attr.name());
headCell1.setCellStyle(styles.get(StringUtils.format("header_{}_{}", attr.headerColor(), attr.headerBackgroundColor())));
excelNum++;
}
int headFirstRow = excelNum - 1;
int headLastRow = headFirstRow + subFields.size() - 1;
if (headLastRow > headFirstRow)
{
sheet.addMergedRegion(new CellRangeAddress(rownum, rownum, headFirstRow, headLastRow));
}
rownum++;
}
}
/**
* 对excel表单默认第一个索引名转换成list
*
* @param is 输入流
* @return 转换后集合
*/
public List<T> importExcel(InputStream is)
{
List<T> list = null;
try
{
list = importExcel(is, 0);
}
catch (Exception e)
{
log.error("导入Excel异常{}", e.getMessage());
throw new UtilException(e.getMessage());
}
finally
{
IOUtils.closeQuietly(is);
}
return list;
}
/**
* 对excel表单默认第一个索引名转换成list
*
* @param is 输入流
* @param titleNum 标题占用行数
* @return 转换后集合
*/
public List<T> importExcel(InputStream is, int titleNum) throws Exception
{
return importExcel(StringUtils.EMPTY, is, titleNum);
}
/**
* 对
没有合适的资源?快使用搜索试试~ 我知道了~
基于Java、Vue、JavaScript等语言的Saas商家后台管理设计源码
共822个文件
java:371个
vue:102个
svg:88个
1.该资源内容由用户上传,如若侵权请联系客服进行举报
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
2.虚拟产品一经售出概不退款(资源遇到问题,请及时私信上传者)
版权申诉
0 下载量 111 浏览量
2024-11-16
00:26:22
上传
评论
收藏 3.65MB ZIP 举报
温馨提示
该源码库是一个基于Java、Vue和JavaScript等语言的Saas商家后台管理系统,包含823个文件,涵盖371个Java源文件、102个Vue组件、88个SVG图形文件、85个JavaScript脚本文件、64个XML配置文件、16个文本文件、13个模板文件、12个YAML配置文件、12个批处理脚本文件、9个SCSS样式文件。该系统适用于SaaS商家后台管理,为商家提供高效便捷的管理工具。
资源推荐
资源详情
资源评论
收起资源包目录
基于Java、Vue、JavaScript等语言的Saas商家后台管理设计源码 (822个子文件)
run-modules-system.bat 286B
run-modules-file.bat 280B
run-monitor.bat 279B
run-modules-job.bat 277B
run-modules-gen.bat 277B
run-gateway.bat 259B
run-auth.bat 250B
package.bat 152B
package.bat 141B
build.bat 109B
run-web.bat 107B
clean.bat 102B
nginx.conf 985B
redis.conf 20B
.env.development 215B
dockerfile 364B
dockerfile 345B
dockerfile 345B
dockerfile 342B
dockerfile 342B
dockerfile 339B
dockerfile 324B
dockerfile 315B
dockerfile 260B
dockerfile 169B
dockerfile 119B
.editorconfig 514B
.eslintignore 298B
401.gif 160KB
.gitignore 653B
.gitignore 395B
.gitignore 256B
ie.html 23KB
index.html 5KB
favicon.ico 5KB
org.springframework.boot.autoconfigure.AutoConfiguration.imports 251B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 164B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 89B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 83B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 58B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 50B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 40B
ExcelUtil.java 51KB
Convert.java 26KB
DataSourceServiceImpl.java 21KB
HTMLFilter.java 19KB
GenTableServiceImpl.java 17KB
SysUserServiceImpl.java 16KB
SysMenuServiceImpl.java 15KB
StringUtils.java 15KB
UUID.java 15KB
ReflectUtils.java 14KB
VelocityUtils.java 14KB
SysUserController.java 12KB
SysRoleServiceImpl.java 11KB
IpUtils.java 11KB
TbAppletHomepageInfoServiceImpl.java 10KB
SysDeptServiceImpl.java 9KB
AuthLogic.java 9KB
Base64.java 9KB
ServletUtils.java 9KB
LogAspect.java 9KB
AliPayController.java 8KB
SysUser.java 8KB
GenUtils.java 8KB
GenTable.java 8KB
SysRoleController.java 8KB
GenTableColumn.java 8KB
WebSocketService.java 7KB
SysJobController.java 7KB
SysJobServiceImpl.java 7KB
GenController.java 7KB
Orders.java 7KB
FileUtils.java 7KB
DataScopeAspect.java 7KB
TbCustomerOrderServiceImpl.java 6KB
RedisService.java 6KB
TbProductPackageServiceImpl.java 6KB
FileUploadUtils.java 6KB
TbProduct.java 6KB
GlobalExceptionHandler.java 6KB
TokenService.java 6KB
SysDictTypeServiceImpl.java 6KB
SysLoginService.java 6KB
SysMenu.java 6KB
SysProfileController.java 6KB
OfflinePurchase.java 6KB
SysRole.java 6KB
SysConfigServiceImpl.java 6KB
TbProductController.java 6KB
JobInvokeUtil.java 6KB
SysMenuController.java 5KB
TbAppletHomepageInfoController.java 5KB
TbCustomerOrderController.java 5KB
DataSourceServiceImpl.java 5KB
SysOperLog.java 5KB
ScheduleUtils.java 5KB
XssFilter.java 5KB
TbProductPackageController.java 5KB
TbCustomerOrder.java 5KB
共 822 条
- 1
- 2
- 3
- 4
- 5
- 6
- 9
资源评论
csbysj2020
- 粉丝: 2632
- 资源: 5502
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- C语言-leetcode题解之70-climbing-stairs.c
- C语言-leetcode题解之68-text-justification.c
- C语言-leetcode题解之66-plus-one.c
- C语言-leetcode题解之64-minimum-path-sum.c
- C语言-leetcode题解之63-unique-paths-ii.c
- C语言-leetcode题解之62-unique-paths.c
- C语言-leetcode题解之61-rotate-list.c
- C语言-leetcode题解之59-spiral-matrix-ii.c
- C语言-leetcode题解之58-length-of-last-word.c
- 计算机编程课程设计基础教程
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功