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的微服务小区智能核酸监控系统设计源码”,包含755个文件,其中包括321个Java源文件、95个Vue单文件组件、88个SVG图像文件、80个JavaScript脚本、58个XML配置文件、16个文本文件、13个VM模板文件、12个YAML配置文件、12个Batch脚本以及9个SCSS样式文件。该系统利用Java和Vue技术栈开发,旨在为小区提供一套智能核酸监控系统,支持核酸信息登记、结果查询、数据统计等功能,适用于社区服务中心、核酸检测机构等场景。项目结构清晰,代码注释详尽,易于理解和集成。
资源推荐
资源详情
资源评论
收起资源包目录
基于Java和Vue的微服务小区智能核酸监控系统设计源码 (755个子文件)
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 669B
.gitignore 490B
.gitignore 490B
.gitignore 256B
ie.html 23KB
index.html 5KB
favicon.ico 5KB
org.springframework.boot.autoconfigure.AutoConfiguration.imports 251B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 222B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 176B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 89B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 83B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 50B
org.springframework.boot.autoconfigure.AutoConfiguration.imports 40B
ExcelUtil.java 51KB
Convert.java 25KB
HTMLFilter.java 19KB
GenTableServiceImpl.java 17KB
StringUtils.java 15KB
SysUserServiceImpl.java 15KB
SysMenuServiceImpl.java 15KB
UUID.java 15KB
ReflectUtils.java 14KB
VelocityUtils.java 14KB
SysUserController.java 11KB
SysRoleServiceImpl.java 11KB
IpUtils.java 11KB
SysDeptServiceImpl.java 9KB
AuthLogic.java 9KB
Base64.java 9KB
ServletUtils.java 9KB
LogAspect.java 9KB
GenUtils.java 8KB
GenTable.java 8KB
SysRoleController.java 8KB
GenTableColumn.java 8KB
SysJobController.java 7KB
SysJobServiceImpl.java 7KB
SysUser.java 7KB
GenController.java 7KB
FileUtils.java 7KB
RedisService.java 6KB
SwaggerProperties.java 6KB
FileUploadUtils.java 6KB
SysDictTypeServiceImpl.java 6KB
DataScopeAspect.java 6KB
GlobalExceptionHandler.java 6KB
SysProfileController.java 6KB
SysLoginService.java 6KB
SysRole.java 6KB
SysHouseholdAcidTaskServiceImpl.java 6KB
SysConfigServiceImpl.java 6KB
SysBuildingServiceImpl.java 6KB
JobInvokeUtil.java 6KB
SysMenu.java 5KB
SysMenuController.java 5KB
SwaggerAutoConfiguration.java 5KB
QRCodeUtil.java 5KB
SysOperLog.java 5KB
ScheduleUtils.java 5KB
XssFilter.java 5KB
TokenService.java 5KB
SysHouseholdAcidTask.java 5KB
DateUtils.java 5KB
SysDeptController.java 5KB
AuthFilter.java 5KB
SysJob.java 5KB
SysBuildingAcidTaskController.java 4KB
ISysUserService.java 4KB
EscapeUtil.java 4KB
SysConfigController.java 4KB
共 755 条
- 1
- 2
- 3
- 4
- 5
- 6
- 8
资源评论
lly202406
- 粉丝: 2586
- 资源: 5433
上传资源 快速赚钱
- 我的内容管理 展开
- 我的资源 快来上传第一个资源
- 我的收益 登录查看自己的收益
- 我的积分 登录查看自己的积分
- 我的C币 登录后查看C币余额
- 我的收藏
- 我的下载
- 下载帮助
最新资源
- (源码)基于Redis和Elasticsearch的日志与指标处理系统.zip
- 学习记录111111111111111111111111
- (源码)基于Python和Selenium的jksb系统健康申报助手.zip
- (源码)基于HiEasyX库的学习工具系统.zip
- (源码)基于JSP+Servlet+JDBC的学生宿舍管理系统.zip
- (源码)基于Arduino和Raspberry Pi的自动化花园系统.zip
- (源码)基于JSP和Servlet的数据库管理系统.zip
- (源码)基于Python的文本相似度计算系统.zip
- (源码)基于Spring Boot和Redis的高并发秒杀系统.zip
- (源码)基于Java的Web汽车销售管理系统.zip
资源上传下载、课程学习等过程中有任何疑问或建议,欢迎提出宝贵意见哦~我们会及时处理!
点击此处反馈
安全验证
文档复制为VIP权益,开通VIP直接复制
信息提交成功