使用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文件框选择文件我以前还是真没做过在网上               找了一个很好用的方法请看代码:

[java] view plain copy

  1. /**
  2. * 打开文件选择窗口选择导入文件
  3. * @return 返回文件路径
  4. * @throws Exception
  5. */
  6. public String getExcelPath() throws Exception{
  7. UIManager.setLookAndFeel(UIManager.getSystemLookAndFeelClassName());
  8. JFileChooser jFileChooser=new JFileChooser();
  9. int i = jFileChooser.showOpenDialog(null);
  10. if(i== jFileChooser.APPROVE_OPTION){ //打开文件
  11. String path = jFileChooser.getSelectedFile().getAbsolutePath();
  12. String fileName = jFileChooser.getSelectedFile().getName();
  13. String extName =fileName.substring(fileName.lastIndexOf(".")+1,fileName.length());
  14. System.out.println("当前文件路径:"+path+";\n当前文件名:"+fileName+";\n当前文件扩展名:"+extName);
  15. if(null!=extName&&"xlsx".equals(extName)){
  16. return path;
  17. }else{
  18. System.out.println("您好,只能导入扩展名为xlsx的Excel文件!");
  19. return null;
  20. }
  21. }else{
  22. System.out.println("没有选中文件");
  23. return null;
  24. }
  25. }
  26. /**
  27. * 使用jxls解析导入的Excel
  28. * @param path 导入文件路径
  29. * @return List<VideoInfo> 导入对象集合
  30. */
  31. public List<VideoInfo> getExcelDataForVideoInfo(String path){
  32. List<VideoInfo> videoInfoList = new ArrayList<VideoInfo>();
  33. try {
  34. InputStream inputXML = new BufferedInputStream(getClass().getClassLoader().getResourceAsStream(ConsForSystem.XML_CONFIG));
  35. XLSReader mainReader = ReaderBuilder.buildFromXML( inputXML );
  36. InputStream inputXLS = new BufferedInputStream(new FileInputStream(new File(path)));
  37. VideoInfo videoInfo = new VideoInfo();
  38. Map<String,Object> beans = new HashMap<String,Object>();
  39. beans.put("videoInfo", videoInfo);
  40. beans.put("videoInfoList", videoInfoList);
  41. XLSReadStatus readStatus = mainReader.read( inputXLS, beans);
  42. if(readStatus.isStatusOK()){
  43. System.out.println("jxls读取Excel成功!");
  44. }
  45. } catch (Exception e) {
  46. e.printStackTrace();
  47. }
  48. return videoInfoList;
  49. }

其中有个静态变量我是统一写在配置类中的:

public static String XML_CONFIG ="videoConfig.xml";

第六步:写一个main函数执行我们写好的方法试一下

[java] view plain copy

  1. public class Test {
  2. public static void main(String[] args) {
  3. SyncDataServiceImpl syncDataService = new SyncDataServiceImpl();
  4. try {
  5. String filePath = syncDataService.getExcelPath();
  6. if(null!=filePath&&StringUtils.isNotBlank(filePath)){
  7. //导入Excel文件解析信息获取资源id
  8. List<VideoInfo> infoList = syncDataService.getExcelDataForVideoInfo(filePath);
  9. System.out.println("infoList大小==="+infoList.size());
  10. for(VideoInfo video:infoList){
  11. System.out.println("打印ideoInfo详细信息======"+video.toString());
  12. }
  13. }
  14. } catch (Exception e) {
  15. e.printStackTrace();
  16. }
  17. }
  18. }

其中SyncDataServiceImpl类是我把前面二个方法写到这个类里面了,里面还有一些其他的业务处理逻辑,就不贴上来了, new SyncDataServiceImpl()对象就可以调用刚才的方法了!

下面的运行截图:

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


 
相比较POI来读取Excel数据个人觉得jxls用起来还是更方便一点!同时jxls导出Excel也是比较方便的,有自己的标签类似JSTL,以后有时间再写一篇吧!希望能帮到需要的人,哈哈!有写的不对的希望高手可以指点一下!谢谢!

时间: 2024-10-09 03:08:59

使用jxls技术导入Excel模版数据(转自其他博客)的相关文章

c#导入excel 绑定数据 repeat为例子

先读取Excel文件并存到dataset 1 public DataSet ExcelToDataTable(string filename, string strsheetname) 2 { 3 try 4 { 5 //源的定义 6 string strConn = "Provider=Microsoft.Jet.OLEDB.4.0;" + "Data Source=" + filename + ";" + "Extended Pro

ASP.NET Hashtable输出JSON格式数据 - 贵源网络 - 博客园

ASP.NET Hashtable输出JSON格式数据 - 贵源网络 - 博客园 ASP.NET Hashtable输出JSON格式数据 ASP.NET Hashtable输出JSON格式数据 - 贵源网络 - 博客园

jxls实现导入Excel数据

SSM项目导入Excel,话不多说,直接干货 1:添加maven相关依赖 <dependency> <groupId>org.jxls</groupId> <artifactId>jxls-reader</artifactId> <version>2.0.2</version> </dependency> <dependency> <groupId>org.jxls</groupI

实测:向MySql数据库导入excel表数据

最近要开发一个小的答题系统,如果题目人工录入那确实很麻烦.所以想到是不是可以从用一些现有数据格式的文件导入数据.在网上查了一下,看到有关于将excel的数据导入到mysql的方法.所以将题库数据整理成excel的.  然后另存为.csv格式的文件.  然后在phpmyadmin中选择导入操作. 但是由于插入的数据出现乱码,失败.  查找原因:因为excel默认编码格式为ANSI,而mysql数据库默认的编码方式是utf-8. 解决办法:我是用editplus将.csv格式的文件打开(打开时将“编

webapi 导入excel处理数据

参考资料     https://blog.csdn.net/pan_junbiao/article/details/82935992 https://www.cnblogs.com/dansediao/p/5482467.html https://www.cnblogs.com/shiyh/p/7478241.html excel转成datatable工具类 using System; using System.Collections.Generic; using System.Data; u

点餐小程序,点餐系统,管理后台批量导入excel菜品数据

点餐系统上线这段时间,有好多同学反馈,是否可以添加一个菜品批量导入的功能.由于平时比较忙,一直没有时间把菜品批量导入的功能加进来.今天正好空出来时间了,就来教大家实现下菜品批量导入的功能. 后面会把这节功能录制成视频放到点餐系统的课程里. 传送门:" rel="nofollow">点餐系统,java后台+点餐小程序 老规矩,先看效果图 选择excel菜品导入数据成功 之前有看过我课程的同学肯定知道,我之前是没有批量导入的类目的,不错,这个类目就是我们今天新加的功能. 实

Sybase数据库技术,数据库恢复---分享Sybase数据库知识(博客文章索引@51cto)

Sybase数据库技术,数据库恢复分享Sybase数据库知识 博客文章列表,更新时间:2014-12-14 Sybase数据库技术,数据库恢复 站点地图 最新文章 ASE使用with ignore_dup_row删除重复数据  (评论 0   阅读 50) ASE 16静默方式安装并创建服务器  (评论 0   阅读 80) ASE执行sp_remotesql报错:Msg 11224, Level 16, State 2  (评论 0   阅读 72) Sybase支持浪潮天梭K1系统  (评论

利用Metaweblog技术的API接口同步到多个博客网站(详细)

很早就有这个想法:自己有时候会用到多个博客,有些博客在一个网站上写完之后,要同步到其他博客网站,自己只能复制粘贴,感觉特别没意思,复制粘贴的麻木了.一直在想有哪些技术能实现一次写博,多站同步.最近网上搜了下,还真有这方面的资料,那就是用Metaweblog的API接口,这种特别像foxmail一样能把多个邮箱都集中在一起管理来收发邮件,Metaweblog能一次把写的博客同步到多个博客. 直接用Metaweblog来实现同步功能不太方便,幸好有了Windows live writer这个实现了M

VB导入Excel到数据前

1.选择Excel文件版本 2.选择Excel文件 3.遍历Excel工作表 4.选择Excel工作表进行预览,前几行,或全部有效数据,显示总数据条数. 5.选择标题列所在行 6.选择数据类型 7.选择新建数据表或现有表 8.选择Excel标题对应数据表的列 9.导入数据