使用JXLS+Excel模板制作灵活的excel导出

前期一直卡在模板的批注上,改了很多遍的模板批注最终才成功导入,记录下方便以后寻找。

话不多说直接上代码:

Report

package com.example.jxls.common;import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Map;
import java.util.Map.Entry;import org.jxls.common.Context;
import org.jxls.util.JxlsHelper;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;public class Report {private static final Logger logger = LoggerFactory.getLogger(Report.class);public void createDocument(OutputStream outStream, String templateName, Map<String, Object> data) {logger.debug("Start creation of document");String pathTemplateName = ("/reports/").concat(templateName).concat(".xls");try(InputStream input = this.getClass().getResourceAsStream(pathTemplateName)) {//1Context context = new Context();for (Entry<String, Object> element : data.entrySet()) { // 2context.putVar(element.getKey(), element.getValue());}
//			System.out.println("context = " + context);JxlsHelper.getInstance().processTemplate(input, outStream, context); // 3} catch (Exception exception) {logger.error("Fail to generate the document", exception);} finally {closeAndFlushOutput(outStream); // 4}}private void closeAndFlushOutput(OutputStream outStream) {try {outStream.flush();outStream.close();} catch (IOException exception) {logger.error("Fail to flush and close the output", exception);}}
}

 

CommonDao

 

package com.example.jxls.dao;import com.example.jxls.model.Client;
import com.github.javafaker.Faker;import java.math.BigDecimal;
import java.util.ArrayList;
import java.util.List;public class CommonDao {public List<Client> getAllClients() {List<Client> clients = new ArrayList<>();Faker faker = new Faker();for (int i = 0; i < 20; i++) {clients.add(new Client(faker.name().firstName(), faker.name().lastName(), faker.bool().bool(),"SSN",faker.idNumber().ssnValid(),BigDecimal.valueOf(faker.number().numberBetween(1, 100000))));}return clients;}
}

UserTask

package com.example.jxls.model;import lombok.Data;public class UserTask {//用户idprivate String id;//用户名称private String userName;//任务Idprivate String taskId;//插件idprivate String  plugId;//班级idprivate String  classId;public UserTask(String id, String userName, String taskId, String plugId, String classId) {this.id = id;this.userName = userName;this.taskId = taskId;this.plugId = plugId;this.classId = classId;}public String getId() {return id;}public void setId(String id) {this.id = id;}public String getUserName() {return userName;}public void setUserName(String userName) {this.userName = userName;}public String getTaskId() {return taskId;}public void setTaskId(String taskId) {this.taskId = taskId;}public String getPlugId() {return plugId;}public void setPlugId(String plugId) {this.plugId = plugId;}public String getClassId() {return classId;}public void setClassId(String classId) {this.classId = classId;}
}

CommonService

package com.example.jxls.service;import com.example.jxls.common.Report;
import com.example.jxls.dao.CommonDao;
import com.example.jxls.model.UserTask;import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.io.OutputStream;
import java.text.ParseException;
import java.text.SimpleDateFormat;
import java.util.*;public class CommonService {private CommonDao dao;public CommonService() {dao = new CommonDao();}private void createCommonClientReport(String templateName, String outputName) throws FileNotFoundException, ParseException {Report report = new Report();OutputStream outStream = new FileOutputStream(outputName);List<UserTask> employees = generateSampleEmployeeData();Map<String, Object> data = new HashMap<>();
//		data.put("createdAt", "2021-01-01");
//		data.put("clients", dao.getAllClients());data.put("employees", employees);data.put("nowdate", new Date());data.put("data2", "222222qwer");report.createDocument(outStream, templateName, data);}public static List<UserTask> generateSampleEmployeeData() throws ParseException {List<UserTask> employees = new ArrayList<UserTask>();SimpleDateFormat dateFormat = new SimpleDateFormat("yyyy-MMM-dd", Locale.US);employees.add( new UserTask("2L", "1970-Jul-10", "1500L", "0.15", "1500L") );employees.add( new UserTask("3L", "1973-Apr-30", "2300L", "0.15","2300L") );employees.add( new UserTask("4L", "1975-Oct-05", "2500L", "0.15","2500L") );employees.add( new UserTask("5L", "1978-Jan-07", "1700L", "0.15","1700L") );employees.add( new UserTask("6L", "1969-May-30", "2800L", "0.15","2800L") );return employees;}public void createClientReport1() throws FileNotFoundException, ParseException {createCommonClientReport("clientsTemplate", "target/clients.xls");}public void createClientReport2() throws FileNotFoundException, ParseException {createCommonClientReport("2111", "target/clients3.xls");}//	public void createClientReportWithConditions() throws FileNotFoundException, ParseException {
//		createCommonClientReport("clientsMarkInactiveTemplate", "target/clientsMarkInactive.xls");
//	}
}

Application

package com.example.jxls;import com.example.jxls.service.CommonService;import java.io.FileNotFoundException;
import java.text.ParseException;public class Application {public static void main(String[] args) throws FileNotFoundException, ParseException {CommonService service = new CommonService();service.createClientReport2();//		service.createClientReportWithConditions();}}

demo1模板示例:

jx:area(lastCell=”D4“)

效果展示:

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/1840.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

使用 Meta Llama 3 构建人工智能的未来

使用 Meta Llama 3 构建人工智能的未来 现在提供 8B 和 70B 预训练和指令调整版本,以支持广泛的应用 使用 Meta AI 体验 Llama 3 我们已将 Llama 3 集成到我们的智能助手 Meta AI 中,它扩展了人们完成工作、创造和与 Meta AI 联系的方式。通过使用 Meta AI 进行编码任务和解…

python安装时遇到A newer version of the Python launcher is already installed.

由于业务需要&#xff0c;我得用python3.9版本&#xff08;好像是因为python3.9对深度学习等的支持比较好&#xff09;&#xff0c;需要涉及到python3.9和python3.12的共存问题&#xff0c;方法有很多&#xff0c;什么创建虚拟环境使得不同版本的共存之类的。最后我选择最笨的&…

RHCA证书含金量高吗?Linux认证难考吗?

在IT行业&#xff0c;Linux系统认证作为衡量专业人士Linux技能水平的重要标准&#xff0c;越来越受到重视。 特别是红帽认证架构师&#xff08;RHCA&#xff09;证书&#xff0c;它代表着Linux领域的高级专业技能。 那么&#xff0c;RHCA证书的含金量如何&#xff1f;Linux认…

通过Dos批量对程序进行打包

本文介绍如何编写dos可执行程序来进行软件的发包,通过dos自动获取系统当前时间复制软件模版到指定的产品目录,然后将指定的产品内容复制到程序内部。最终通过360压缩工具进行一个打包操作。提供程序发布效率。 当前时间日期: set predate=%date:~0,4%%date:~5,2%%date:~8,2%…

C语言.字符函数与字符串函数

字符函数与字符串函数 1.字符分类函数2.字符转换函数3.[strlen](https://cplusplus.com/reference/cstring/strlen/?kwstrlen) 的使用和模拟实现4.[strcpy](https://legacy.cplusplus.com/reference/cstring/strcpy/?kwstrcpy) 的使用和模拟实现5.[strcat](https://legacy.cp…

Remote access minikube cluster远程访问minikube k8s集群

minikube是启动一个虚拟机来模拟单节点环境&#xff0c;容器运行在单独的网络环境 可以看到192.168.49.2:8443是api server地址&#xff0c;是虚拟的ip (base) [rootlocalhost access]# kubectl config view apiVersion: v1 clusters: - cluster:certificate-authority: /roo…

信息系统及其技术发展

目录 一、信息系统基本概念 1、信息系统项目开发 2、信息系统项目管理 3、信息系统 Ⅰ、生命周期 Ⅱ、新基建 ①信息基础设施 ②融合基础设施 ③创新基础设施 Ⅲ、工业互联网 Ⅳ、车联网 ①体系框架 ②连接方式 4、习题 二、信息技术发展 1、SDN 2、5G 3、存储…

AI小知识----什么是RAG

RAG的概念 RAG的全称是Retrieval-Augmented Generation&#xff0c;中文翻译为检索增强生成。它是一个为大模型提供外部知识源的概念&#xff0c;这使它们能够生成准确且符合上下文的答案&#xff0c;同时能够减少模型幻觉。 「检索(Retrive)」 根据用户请求从外部知识源检索相…

书生·浦语大模型第二期实战营(5)笔记

大模型部署简介 难点 大模型部署的方法 LMDeploy 实践 安装 studio-conda -t lmdeploy -o pytorch-2.1.2conda activate lmdeploypip install lmdeploy[all]0.3.0模型 ls /root/share/new_models/Shanghai_AI_Laboratory/ln -s /root/share/new_models/Shanghai_AI_Laborato…

【Vue3源码学习】— CH3.2 VNode解析(上)

VNode解析—上 1. VNode 的作用和优势1.1 抽象表示1.2 更新优化1.3 跨平台2. _createVNode 函数解析2.1 调用链路2.2 _createVNode函数实现关键操作说明:注1:注2:2.3 _createVNode小结3. createBaseVNode 详解3.1 源码解析3.2 关键部分解析3.3 类型说明3.3.1 ts | 符号3.3.2 解…

探索Java设计模式:命令模式

深入理解与实践Java设计模式之命令模式 一、简要介绍 命令模式&#xff08;Command Pattern&#xff09;是一种行为型设计模式&#xff0c;它将请求封装为一个对象&#xff0c;使得使用命令对象的客户端与请求接收者&#xff08;即具体执行命令的对象&#xff09;解耦。这样做…

只需几步,即可享有笔记小程序

本示例是一个简单的外卖查看店铺点菜的外卖微信小程序&#xff0c;小程序后端服务使用了MemFire Cloud&#xff0c;其中使用到的MemFire Cloud功能包括&#xff1a; 其中使用到的MemFire Cloud功能包括&#xff1a; 云数据库&#xff1a;存储外卖微信小程序所有数据表的信息。…

【linux】软件工具安装 + vim 和 gcc 使用(上)

目录 1. linux 安装软件途径 2. rzsz 命令 3. vim 和 gcc 使用 a. vim的基本概念 b. 命令模式下的指令 c. 底行模式下的指令 1. linux 安装软件途径 源代码安装rpm安装 -- linux安装包yum安装&#xff08;最好&#xff0c;可以解决安装源&#xff0c;安装版本&#xff0…

0418WeCross搭建 + Caliper测试TPS

1. 基本信息 虚拟机名称&#xff1a;Pure-Ununtu18.04 WeCross位置&#xff1a;/root/wecross-demo 2. 搭建并启动WeCross 参考官方指导文档 https://wecross.readthedocs.io/zh-cn/v1.2.0/docs/tutorial/demo/demo.html 访问WeCross网页管理平台 http://localhost:8250/s/…

【Java框架】Spring框架(六)——Spring中的Bean的作用域

目录 Bean的作用域1.singleton(默认)代码示例 2.prototype代码示例 3.request代码示例 4.session代码示例 5.application代码示例 websocket Bean的作用域 Spring支持6个作用域&#xff1a;singleton、prototype、request、session、application、websocket 1.singleton(默认…

python基础知识二(标识符和关键字、输出、输入)

目录 标识符和关键字&#xff1a; 什么是标识符&#xff1f; 1. 标识符 2. 标识符的命名规则 什么是关键字&#xff1f; 1. 关键字 2. 关键字的分类 标识符和关键字的区别&#xff1a; ​​​输出&#xff1a; 1. 普通的输出 2. 格式化输出 格式化操作的目的&#…

Pycharm破解流程

1.下载pycharm 网上很多&#xff0c;随便找一个&#xff0c;懒得找的话&#xff0c;或者去我传上去的资源pycharm部分直接取 2.下载文件 文件部分&#xff0c;我放在pycharm文件里面一起 打开下载好的激活包 3.执行脚本 先执行unisntall-all-users.vbs,直接双击打开&#xff0c…

LeetCode刷题--- 完全平方数

前言&#xff1a;这个专栏主要讲述动态规划算法&#xff0c;所以下面题目主要也是这些算法做的 我讲述题目会把讲解部分分为3个部分&#xff1a; 1、题目解析 2、算法原理思路讲解 3、代码实现 完全平方数 题目链接&#xff1a;完全平方数 题目 给你一个整数 n &#x…

牛客网华为机试题说明一

一. 简介 对牛客网华为机试题进行一下记录。 二. 牛客网华为机试题 1. 字符串最后一个单词的长度 题目说明 计算字符串最后一个单词的长度&#xff0c;单词以空格隔开&#xff0c;字符串长度小于5000。 &#xff08;注&#xff1a;字符串末尾不以空格为结尾&#xff09; 输…

Springboot AOP接口防刷、防重复提交

Java利用注解、Redis做防重复提交和限流 使用场景 用户网络慢&#xff0c;电脑卡&#xff0c;一直点击保存&#xff0c;修改按钮无返回信息&#xff0c;会导致多个请求去保存、修改 开放接口、或加密接口频繁访问&#xff0c;会导致程序压力大&#xff0c;可能被他人写脚本一直…