博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
excel导入导出组件设计
阅读量:6281 次
发布时间:2019-06-22

本文共 3497 字,大约阅读时间需要 11 分钟。

这是我设计的excel导入导出组件,使用 编写,通过xml文件的配置,来设置excel到java bean的映射。关键(配置)文件:ExcelModeMappingl.xml。

之前一直为excel的导入导出烦恼,每写一次都感觉是“重复造轮子”,代码很繁琐,可移植性特别差。终于下决心写一个可重用性很高的组件,专门解决“重复造轮子”的问题。

 

xml配置文件名称:ExcelModeMappingl.xml

内容(示例):

<?xml version="1.0" encoding="UTF-8" ?>

<models>

     <model id="deptModel" class=<!--[if !supportAnnotations]--><!--[endif]--> >

         <property <!--[if !supportAnnotations]--><!--[endif]--> ="deptName" column="1" excelTitleName="部门名称" dataType="String" maxLength="15"  default=""/>

         <property name="deptCode" column="2" <!--[if !supportAnnotations]--><!--[endif]--> ="部门编号" dataType="String" maxLength="15"  default="abc"/>

         <property name="sendFileName" column="4" excelTitleName="发文简称"dataType="String" maxLength="15" isConvertable="true"  <!--[if !supportAnnotations]--><!--[endif]--> ="C">

         <map>

              <entry excel_key="永久" bean_value="c"></entry>

              <entry excel_key="长期1" bean_value="send_1"></entry>

              <entry excel_key="长期2" bean_value="send_2"></entry>

              <entry excel_key="长期3" bean_value="send_3"></entry>

              <entry excel_key="长期4" bean_value="send_4"></entry>

              <entry excel_key="长期5" bean_value="send_5"></entry>

         </map>

         </property>

         <property name="sendDate" column="3" excelTitleName="时间" dataType="Date"format="yyyyMMdd HH:mm:ss" maxLength="15"  default="10"/>

     </model>

    

</models>

这个文件有两个作用,(1)用于有excel文件转化为beans;(2)用于把beans转化为excel

<!--[if !supportLists]-->(1)    <!--[endif]--> default只有在excel转为java beans才有效;在java beans转化为excel时无效。

excel中的单元格中无内容,则采用default指定的值;

<!--[if !supportLists]-->(2)     <!--[endif]-->column只有在从java bean导出excel时才有效,表示excel中列(表头)的顺序,取值范围为[1,2,3……]

<!--[if !supportLists]-->(3)    <!--[endif]-->dataTypeDate,则多出一个属性format,例如format=”yyyy-MM-dd”;导入导出excel时都有效

<!--[if !supportLists]-->(4)    <!--[endif]-->isConvertable的值为true,则有map节点,否则则不会读取xml 配置文件中的map节点;

<!--[if !supportLists]-->(5)    <!--[endif]-->map说明:excel_key 表示excel单元格中的值,而bean_value则表示java bean中对应属性的值。

<!--[if !supportLists]-->(6)    <!--[endif]-->dataType只允许有两种取值[Date, String];

<!--[if !supportLists]-->(7)    <!--[endif]-->此配置文件采用UTF-8编码;

 

xml配置文件 各标签的说明

标签名称

含义

示例

model

定义一个java beanexcel的映射(mapping

 

class

model的属性,必须的。指定java bean的类路径

例如com.kunlunsoft.model.Student

property

java bean中的成员变量

 

name

property标签的属性,指定java bean的成员变量名称

 

excelTitleName

excel文件中表头的名称,与name是一一映射的。

 

dataType

数据类型,分为String Date,目前就这两种,int,float统一归于String类型

 

format

如果类型是Date,则可以指定该属性,用于日期的格式化

format="yyyyMMddHH:mm:ss"

maxLength

预留的,目前没有使用

 

default

默认值。excel文件转化为java bean时,excel单元格为空,则设置java bean对应属性值为该默认值

 

isConvertable

是否需要转化。比如java bean中的值为[yes,no],而对应的excel中的值为[是,否],这就需要使用一个map来进行映射

<map><entry excel_key="" bean_value="yes"></entry>

                            <entry excel_key="" bean_value="no"></entry></map>

 

 

 

 

 

 

 

 

 

 

 

 

<!--[if !supportAnnotations]-->

<!--[endif]-->
<!--[if !supportAnnotations]-->
<!--[endif]--><!--[if !supportAnnotations]--> <!--[endif]-->

 <!--[if !supportAnnotations]--><!--[endif]-->这是实体类

<!--[if !supportAnnotations]-->
<!--[endif]-->
<!--[if !supportAnnotations]-->
<!--[endif]--><!--[if !supportAnnotations]--> <!--[endif]-->

 <!--[if !supportAnnotations]--><!--[endif]-->实体类中的属性名称

<!--[if !supportAnnotations]-->
<!--[endif]-->
<!--[if !supportAnnotations]-->
<!--[endif]--><!--[if !supportAnnotations]--> <!--[endif]-->

 <!--[if !supportAnnotations]--><!--[endif]-->excel文件中的表头名称

<!--[if !supportAnnotations]-->
<!--[endif]-->
<!--[if !supportAnnotations]-->
<!--[endif]--><!--[if !supportAnnotations]--> <!--[endif]-->

 <!--[if !supportAnnotations]--><!--[endif]-->excel中的单元格为空,则转化为java bean时,采用默认值

 

详见附件。

<!--[if !supportAnnotations]-->
<!--[endif]-->

转载地址:http://jnsva.baihongyu.com/

你可能感兴趣的文章
3.31
查看>>
类对象定义 二
查看>>
收费视频网站Netflix:用户到底想要“点”什么?
查看>>
MacOS High Sierra 12 13系统转dmg格式
查看>>
关于再次查看已做的多选题状态逻辑问题
查看>>
动态下拉菜单,非hover
查看>>
政府安全资讯精选 2017年第十六期 工信部发布关于规范互联网信息服务使用域名的通知;俄罗斯拟建立备用DNS;Google打击安卓应用在未经同意情况下收集个人信...
查看>>
简单易懂的谈谈 javascript 中的继承
查看>>
iOS汇编基础(四)指针和macho文件
查看>>
Laravel 技巧锦集
查看>>
Android 使用 ViewPager+RecyclerView+SmartRefreshLayout 实现顶部图片下拉视差效果
查看>>
Flutter之基础Widget
查看>>
写给0-3岁产品经理的12封信(第08篇)——产品运营能力
查看>>
ArcGIS Engine 符号自动化配置工具实现
查看>>
小程序 · 跳转带参数写法,兼容url的出错
查看>>
flutter error
查看>>
Flask框架从入门到精通之模型数据库配置(十一)
查看>>
10年重新出发
查看>>
2019年-年终总结
查看>>
聊聊elasticsearch的RoutingService
查看>>