使用jxls技术导入Excel模版数据(转自其他博客)
第一步:先确定好Excel导入的格式以及各表格字段值的含义

第二步:定义好解析的XML--videoConfig.xml
<?xml version="1.0" encoding="UTF-8"?>
<workbook>
<worksheet name="Sheet1">
<section startRow="0" endRow="0"/>
<loop startRow="1" endRow="1" items="videoInfoList" var="videoInfo" varType="com.iflytek.weike.job.bo.VideoInfo">
<section startRow="1" endRow="1">
<mapping row="1" col="0">videoInfo.index</mapping>
<mapping row="1" col="1">videoInfo.videoName</mapping>
<mapping row="1" col="2">videoInfo.resourceId</mapping>
<mapping row="1" col="3">videoInfo.upload</mapping>
<mapping row="1" col="4">videoInfo.content</mapping>
<mapping row="1" col="5">videoInfo.schoolName</mapping>
</section>
<loopbreakcondition>
<rowcheck offset="0">
<cellcheck offset="0"></cellcheck>
</rowcheck>
</loopbreakcondition>
</loop>
</worksheet>
</workbook>
第三步:生成一下解析的实体类VideoInfo(这个需要根据excel文件的列去手工写一个)
public class VideoInfo {
//序号
private int index;
//视频名称(全称)
private String videoName;
//视频资源ID
private String resourceId;
//上传者
private String upload;
//课程说明
private String content;
//学校名称
private String schoolName;
public VideoInfo() {
}
public VideoInfo(int index, String videoName, String resourceId, String upload, String content, String schoolName) {
super();
this.index = index;
this.videoName = videoName;
this.resourceId = resourceId;
this.upload = upload;
this.content = content;
this.schoolName = schoolName;
}
public int getIndex() {
return index;
}
public void setIndex(int index) {
this.index = index;
}
public String getVideoName() {
return videoName;
}
public void setVideoName(String videoName) {
this.videoName = videoName;
}
public String getResourceId() {
return resourceId;
}
public void setResourceId(String resourceId) {
this.resourceId = resourceId;
}
public String getUpload() {
return upload;
}
public void setUpload(String upload) {
this.upload = upload;
}
public String getContent() {
return content;
}
public void setContent(String content) {
this.content = content;
}
public String getSchoolName() {
return schoolName;
}
public void setSchoolName(String schoolName) {
this.schoolName = schoolName;
}
@Override
public String toString() {
return "VideoInfo [index=" + index + ", videoName=" + videoName + ", resourceId=" + resourceId + ", upload="
+ upload + ", content=" + content + ", schoolName=" + schoolName + "]";
}
}
第四步:添加jxls的jar包,我这里项目用maven管理jar包的版本是1.0.6大家可以去下面这个maven资源库下 载jar包 maven资源库地址:http://mvnrepository.com/open-source/excel-libraries;
第五步:windows弹框选择文件并解析Excel数据,这个windows文件框选择文件我以前还是真没做过在网上 找了一个很好用的方法请看代码:
- /**
- * 打开文件选择窗口选择导入文件
- * @return 返回文件路径
- * @throws Exception
- */
- public String getExcelPath() throws Exception{
- UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
- JFileChooser jFileChooser=new JFileChooser();
- int i = jFileChooser.showOpenDialog(null);
- if(i== jFileChooser.APPROVE_OPTION){ //打开文件
- String path = jFileChooser.getSelectedFile().getAbsolutePath();
- String fileName = jFileChooser.getSelectedFile().getName();
- String extName =fileName.substring(fileName.lastIndexOf(".")+1,fileName.length());
- System.out.println("当前文件路径:"+path+";\n当前文件名:"+fileName+";\n当前文件扩展名:"+extName);
- if(null!=extName&&"xlsx".equals(extName)){
- return path;
- }else{
- System.out.println("您好,只能导入扩展名为xlsx的Excel文件!");
- return null;
- }
- }else{
- System.out.println("没有选中文件");
- return null;
- }
- }
- /**
- * 使用jxls解析导入的Excel
- * @param path 导入文件路径
- * @return List<VideoInfo> 导入对象集合
- */
- public List<VideoInfo> getExcelDataForVideoInfo(String path){
- List<VideoInfo> videoInfoList = new ArrayList<VideoInfo>();
- try {
- InputStream inputXML = new BufferedInputStream(getClass().getClassLoader().getResourceAsStream(ConsForSystem.XML_CONFIG));
- XLSReader mainReader = ReaderBuilder.buildFromXML( inputXML );
- InputStream inputXLS = new BufferedInputStream(new FileInputStream(new File(path)));
- VideoInfo videoInfo = new VideoInfo();
- Map<String,Object> beans = new HashMap<String,Object>();
- beans.put("videoInfo", videoInfo);
- beans.put("videoInfoList", videoInfoList);
- XLSReadStatus readStatus = mainReader.read( inputXLS, beans);
- if(readStatus.isStatusOK()){
- System.out.println("jxls读取Excel成功!");
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- return videoInfoList;
- }
其中有个静态变量我是统一写在配置类中的:
public static String XML_CONFIG ="videoConfig.xml";
第六步:写一个main函数执行我们写好的方法试一下
- public class Test {
- public static void main(String[] args) {
- SyncDataServiceImpl syncDataService = new SyncDataServiceImpl();
- try {
- String filePath = syncDataService.getExcelPath();
- if(null!=filePath&&StringUtils.isNotBlank(filePath)){
- //导入Excel文件解析信息获取资源id
- List<VideoInfo> infoList = syncDataService.getExcelDataForVideoInfo(filePath);
- System.out.println("infoList大小==="+infoList.size());
- for(VideoInfo video:infoList){
- System.out.println("打印ideoInfo详细信息======"+video.toString());
- }
- }
- } catch (Exception e) {
- e.printStackTrace();
- }
- }
- }
其中SyncDataServiceImpl类是我把前面二个方法写到这个类里面了,里面还有一些其他的业务处理逻辑,就不贴上来了, new SyncDataServiceImpl()对象就可以调用刚才的方法了!
下面的运行截图:

运行结果截图,导入Excel成功:

相比较POI来读取Excel数据个人觉得jxls用起来还是更方便一点!同时jxls导出Excel也是比较方便的,有自己的标签类似JSTL,以后有时间再写一篇吧!希望能帮到需要的人,哈哈!有写的不对的希望高手可以指点一下!谢谢!
使用jxls技术导入Excel模版数据(转自其他博客)的更多相关文章
- springMVC(5)---导入excel文件数据到数据库
springMVC(5)---导入excel文件数据到数据库 上一篇文章写了从数据库导出数据到excel文件,这篇文章悄悄相反,写的是导入excel文件数据到数据库.上一篇链接:springMVC(4 ...
- 使用Javascript/jQuery将javascript对象转换为json格式数据 - 海涛的CSDN博客 - 博客频道 - CSDN.NET
body{ font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI& ...
- Vue3实现动态导入Excel表格数据
1. 前言 在开发工作过程中,我们会遇到各种各样的表格数据导入,大部分我们的解决方案:提供一个模板前端进行下载,然后按照这个模板要求进行数据填充,最后上传导入,这是其中一种解决方案.个人认为还有另外 ...
- 向MySql数据库导入excel表数据
最近要开发一个小的答题系统,如果题目人工录入那确实很麻烦.所以想到是不是可以从用一些现有数据格式的文件导入数据.在网上查了一下,看到有关于将excel的数据导入到mysql的方法.所以将题库数据整理成 ...
- 向SQL Server中导入Excel的数据
1. 手动界面导入Excel数据 同 https://jingyan.baidu.com/article/ce09321b9a0e252bff858ff9.html 首先打开并登陆sql serve ...
- java导入Excel表格数据
首先导入Excel数据需要几样东西 第一需要两个依赖包,这里直接是在pom注入依赖 <!--excel--> <dependency> <groupId>org.a ...
- 利用Metaweblog技术的API接口同步到多个博客网站(详细)
很早就有这个想法:自己有时候会用到多个博客,有些博客在一个网站上写完之后,要同步到其他博客网站,自己只能复制粘贴,感觉特别没意思,复制粘贴的麻木了.一直在想有哪些技术能实现一次写博,多站同步.最近网上 ...
- Sql server2008如何导入Excel文件数据?
sql server 中如何使用Excel文件导入数据?我做个测试,首先建立一个测试表(民族表) --创建一个民族表-- create table BdsNation( Uid int not nul ...
- java后端导入excel将数据写入数据库
参考:https://www.cnblogs.com/hanfeihanfei/p/7079210.html @RequestMapping("/importExcel.do") ...
随机推荐
- poi 导出工具类
工具类 package com.banxue.kmsservice.helper; import net.sf.json.JSONArray; import net.sf.json.JSONObjec ...
- Linux下jdk安装过程
注意:rpm 与软件相关命令 相当于 window 下的软件助手 管理软件 1 查看当前 Linux 系统是否已经安装 java 1)在命令窗口输入,可以查看系统自带的OpenJDK版本信息. jav ...
- 转 linux 内存释放
原文 http://blog.zol.com.cn/2322/article_2321774.html #cat /proc/meminfo | grep "MemFree" | ...
- ubuntu 修改 ls 下的目录颜色
ubuntu 下, ls 显示的目录的颜色,怎么说呢,看起来太费劲了. 于是想着修改成容易识别的颜色. 于是搜索了一下. 这里列举三个搜到的教程吧. 简单说我按这上面的方法做了,然后都失败了. 1. ...
- 我是怎么一步步用go找出压测性能瓶颈
欢迎大家前往腾讯云+社区,获取更多腾讯海量技术实践干货哦~ 本文由mariolu 发表于云+社区专栏 序言: 笔者要在线上服务器load日志并且重放来测一些机器性能指标.模拟机器资源比较少,相对的 ...
- [APIO2018] Circle selection 选圆圈
Description 给出 \(n\) 个圆 \((x_i,y_i,r_i)\) 每次重复以下步骤: 找出半径最大的圆,并删除与这个圆相交的圆 求出每一个圆是被哪个圆删除的 Solution \(k ...
- 原创:微信小程序之MaterialDesign--input组件
作者:jeffer 来自:原文地址 主要通过input输入事件配合css的transform动态改变实现这种效果. 实际调试过程中,input组件bindinput事件触发后回调的detail对象,在 ...
- PHP学习3——数组
主要内容: 简介 常用的方法 循环遍历数组 PHP预定义数组 数组的处理函数 数组 PHP由于是弱类型的语言,他的变量类型是可以自由变换的,他的数组很自由,长度是可以动态增加的. 他的索引默认为数字0 ...
- C#基础 (一)
值类型和引用类型 堆和栈 栈存放的数据: (1)某些类型变量的值(2)程序当前的执行环境(3)传递给方法的参数 堆是存放对象的地方 对象类型有两种: 值类型和引用类型,他们的存储方式不同值类型: 只需 ...
- tomcat中文请求乱码问题
使用tomcat做服务时,如果发送的url请求中包含中文字符,可能会出现乱码问题: