Jxls表格导出功能帮助文档

本文档介绍了如何使用Jxls库实现一个时刻表的Excel导出功能。首先,作者展示了业务需求和设计原型,然后详细讲述了功能实现过程,包括遇到的版本问题、依赖的Jxls库、以及一些实用工具类。文中提供了模板定义的注意事项,特别是表格区域的标识,以及如何处理列表数据的导出。此外,还分享了如何格式化单元格内容以及关键代码片段。
摘要由CSDN通过智能技术生成

Jxls表格导出功能帮助文档

业务介绍

做一个时刻表的导出功能,数据模型都已经写好了。原型图大概是这样的一个意思。先看图:
导出的时刻表原型图
大概设计是这个样子。
然后最后导出的成品是这个样子:
在这里插入图片描述
大概业务明确之后,我就开始进行实现了。

功能实现

我是参照了一个开源后台管理项目中的模板导出功能扒下来的,有兴趣的同学们可以去看看人家的代码。我觉得还可以,附带项目代码链接:链接: http://webflash.enilu.cn/.

  1. 依赖的jar:这个一定要注意版本号,我在这上面排坑拍了一上午,实际代码都没问题,但是在导出的时候会被各种异常困扰。后来总结复盘了一下就是因为版本号的问题导致的。下面展示一些
    dependency
		<dependency>
			<groupId>org.jxls</groupId>
			<artifactId>jxls</artifactId>
			<version>2.3.0</version>
		</dependency>
		<dependency>
			<groupId>org.jxls</groupId>
			<artifactId>jxls-poi</artifactId>
			<version>1.0.9</version>
		</dependency>
		<!--数据导出excel-->
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi</artifactId>
			<version>3.8</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml</artifactId>
			<version>3.8</version>
		</dependency>
		<!-- https://mvnrepository.com/artifact/org.apache.poi/poi-ooxml-schemas -->
		<dependency>
			<groupId>org.apache.poi</groupId>
			<artifactId>poi-ooxml-schemas</artifactId>
			<version>3.8</version>
		</dependency>

这个是我调查了很多帖子找到的能用的一个。有

poi
poi-ooxml
poi-ooxml-schemas

这三个依赖一定要3.8的我当时就不信邪,头铁各种debug到源码了发现根本行。都没那个模板导出的语法规则。
2. 一些有用的until。我这里用到了一些Until,我觉得也不错都写在这里吧 。
XlsUtils:这个是为了表格上面进行格式化的,Jxls的句法跟JSTL的语法感觉很类似

/**
* @author wang hongyu
* @package_name signalsys-parent
* @date 2021/6/10
*/
public class XlsUtils {
   public String dateFmt(Date date, String fmt) {
       if (date == null) {
           return "";
       }
       return DateUtil.formatDate(date,fmt);
   }

   /**
    * 时间转换
    * @param time
    * @return
    */
   public String handleTimeStr(Integer time) {
       if (time==null){time=0;}
       String timeStr=String.valueOf(time);
       String timer= "";
       if (timeStr.length()==6){
           String hour=timeStr.substring(0,2);
           String min =timeStr.substring(2,4);
           String sec =timeStr.substring(4);
           timer=hour+":"+min+":"+sec;
       }else if (timeStr.length()==5){
           String hour=timeStr.substring(0,1);
           String min =timeStr.substring(1,3);
           String sec =timeStr.substring(3);
           timer=hour+":"+min+":"+sec;
       }else{
           timer=timeStr;
       }
       return timer;
   }

   public String handleRate(String late){
       return late+"%";
   }

   public String handleTrainPlanCode(String scheduleCode,String trainPlanCode){
       return scheduleCode+trainPlanCode;
   }

   public String handleLate(Integer late){
       if (late!=null){
           if (late != 0) {
               int hour = late / (60 * 60);
               int min = (late - (hour * 60 * 60)) / 60;
               int sec = (late - (hour * 60 * 60) - (min * 60)) % (60 * 60);
               if (hour < 0) {
                   return "+" + Math.abs(hour) + ":" + Math.abs(min) + ":" + Math.abs(sec);
               } else if (hour>0) {
                   return "-" + Math.abs(hour) + ":" + Math.abs(min) + ":" + Math.abs(sec);
               }else{
                   return  Math.abs(hour) + ":" + Math.abs(min) + ":" + Math.abs(sec);
               }
           }
       }

       return "";
   }
}

StringUtil:字符串处理相关

public class StringUtil {
   public static final String EMPTY = "";
   private static final AtomicLong ORDER_SEQ = new AtomicLong(1);
   private static  final Pattern PATERN_IP = Pattern.compile("((2[0-4]\\d|25[0-5]|[01]?\\d\\d?)\\.){3}(2[0-4]\\d|25[0-5]|[01]?\\d\\d?)");
   /**
    * 是否为空字符
    */
   public static boolean isEmpty(String str) {
       if (str == null || str.trim().length() == 0) {
           return true;
       }
       if ("null".equalsIgnoreCase(str) || "undefined".equalsIgnoreCase(str)) {
           return true;
       }
       return false;
   }


   /**
    * 是否为非空字符
    */
   public static boolean isNotEmpty(String str) {
       return (!isEmpty(str));
   }

   /**
    * 判断是否为null或空字符
    */
   public static boolean isNullOrEmpty(Object o) {
       if (o == null) {
           return true;
       }
       if (String.valueOf(o).replace((char) 12288, ' ').trim().length() == 0) {
           return true;
       }
       if ("null".equals(o)) {
           return true;
       }
       return false;
   }

   /**
    * 判断是否不为null或非空字符
    */
   public static boolean isNotNullOrEmpty(Object o) {
       return !isNullOrEmpty(o);
   }

   // 根据Unicode编码完美的判断中文汉字和符号
   priv
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值
>