当前位置: 首页 > news >正文

消费者联盟网站怎么做手机微网站

消费者联盟网站怎么做,手机微网站,怎么样找回网站密码,建设网站费用分析2. Apache POI 2.1 介绍 Apache POI 是一个处理Miscrosoft Office各种文件格式的开源项目。简单来说就是,我们可以使用 POI 在 Java 程序中对Miscrosoft Office各种文件进行读写操作。 一般情况下,POI 都是用于操作 Excel 文件。 Apache POI 的应用场景…

2. Apache POI

2.1 介绍

Apache POI 是一个处理Miscrosoft Office各种文件格式的开源项目。简单来说就是,我们可以使用 POI 在 Java 程序中对Miscrosoft Office各种文件进行读写操作。
一般情况下,POI 都是用于操作 Excel 文件。

Apache POI 的应用场景:

  • 银行网银系统导出交易明细

  • 各种业务系统导出Excel报表

  • 批量导入业务数据

入门案例

Apache POI既可以将数据写入Excel文件,也可以读取Excel文件中的数据,接下来分别进行实现。

Apache POI的maven坐标:(项目中已导入)

<dependency><groupId>org.apache.poi</groupId><artifactId>poi</artifactId><version>3.16</version>
</dependency>
<dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>3.16</version>
</dependency>

2.2.1 将数据写入Excel文件

1). 代码开发

package com.sky.test;import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;public class POITest {/*** 基于POI向Excel文件写入数据* @throws Exception*/public static void write() throws Exception{//在内存中创建一个Excel文件对象XSSFWorkbook excel = new XSSFWorkbook();//创建Sheet页XSSFSheet sheet = excel.createSheet("itcast");//在Sheet页中创建行,0表示第1行XSSFRow row1 = sheet.createRow(0);//创建单元格并在单元格中设置值,单元格编号也是从0开始,1表示第2个单元格row1.createCell(1).setCellValue("姓名");row1.createCell(2).setCellValue("城市");XSSFRow row2 = sheet.createRow(1);row2.createCell(1).setCellValue("张三");row2.createCell(2).setCellValue("北京");XSSFRow row3 = sheet.createRow(2);row3.createCell(1).setCellValue("李四");row3.createCell(2).setCellValue("上海");FileOutputStream out = new FileOutputStream(new File("D:\\itcast.xlsx"));//通过输出流将内存中的Excel文件写入到磁盘上excel.write(out);//关闭资源out.flush();out.close();excel.close();}public static void main(String[] args) throws Exception {write();}
}

2). 实现效果

在D盘中生成itcast.xlsx文件,创建名称为itcast的Sheet页,同时将内容成功写入。

2.2.2 读取Excel文件中的数据

1). 代码开发

package com.sky.test;import org.apache.poi.xssf.usermodel.XSSFCell;
import org.apache.poi.xssf.usermodel.XSSFRow;
import org.apache.poi.xssf.usermodel.XSSFSheet;
import org.apache.poi.xssf.usermodel.XSSFWorkbook;
import java.io.File;
import java.io.FileInputStream;
import java.io.FileOutputStream;public class POITest {/*** 基于POI读取Excel文件* @throws Exception*/public static void read() throws Exception{FileInputStream in = new FileInputStream(new File("D:\\itcast.xlsx"));//通过输入流读取指定的Excel文件XSSFWorkbook excel = new XSSFWorkbook(in);//获取Excel文件的第1个Sheet页XSSFSheet sheet = excel.getSheetAt(0);//获取Sheet页中的最后一行的行号int lastRowNum = sheet.getLastRowNum();for (int i = 0; i <= lastRowNum; i++) {//获取Sheet页中的行XSSFRow titleRow = sheet.getRow(i);//获取行的第2个单元格XSSFCell cell1 = titleRow.getCell(1);//获取单元格中的文本内容String cellValue1 = cell1.getStringCellValue();//获取行的第3个单元格XSSFCell cell2 = titleRow.getCell(2);//获取单元格中的文本内容String cellValue2 = cell2.getStringCellValue();System.out.println(cellValue1 + " " +cellValue2);}//关闭资源in.close();excel.close();}public static void main(String[] args) throws Exception {read();}
}

2). 实现效果

将itcast.xlsx文件中的数据进行读取

3. 导出运营数据Excel报表

3.1controller层

	/*** 导出运营数据报表* @param response*/@GetMapping("/export")@ApiOperation("导出运营数据报表")public void export(HttpServletResponse response){reportService.exportBusinessData(response);}

3.2service层

    @Overridepublic void export(HttpServletResponse response) {LocalDate begin = LocalDate.now().minusDays(30);LocalDate end = LocalDate.now().minusDays(1);//查询概览运营数据,提供给Excel模板文件BusinessDataVO businessData = workspaceService.getBusinessData(LocalDateTime.of(begin,LocalTime.MIN), LocalDateTime.of(end, LocalTime.MAX));/**class.getResourceAsStream如果path不带"/",那么就是从当前class文件的路径下找文件如果path带"/",那么就是从类路径.classpath中去找文件*/InputStream inputStream = this.getClass().getClassLoader().getResourceAsStream("template/运营数据报表模板.xlsx");try {//基于提供好的模板文件创建一个新的Excel表格对象XSSFWorkbook excel = new XSSFWorkbook(inputStream);//获得Excel文件中的一个Sheet页XSSFSheet sheet = excel.getSheet("Sheet1");sheet.getRow(1).getCell(1).setCellValue(begin + "至" + end);//获得第4行XSSFRow row = sheet.getRow(3);//获取单元格row.getCell(2).setCellValue(businessData.getTurnover());row.getCell(4).setCellValue(businessData.getOrderCompletionRate());row.getCell(6).setCellValue(businessData.getNewUsers());row = sheet.getRow(4);row.getCell(2).setCellValue(businessData.getValidOrderCount());row.getCell(4).setCellValue(businessData.getUnitPrice());for (int i = 0; i < 30; i++) {LocalDate date = begin.plusDays(i);//准备明细数据businessData = workspaceService.getBusinessData(LocalDateTime.of(date,LocalTime.MIN), LocalDateTime.of(date, LocalTime.MAX));row = sheet.getRow(7 + i);row.getCell(1).setCellValue(date.toString());if (Objects.isNull(businessData.getTurnover())){row.getCell(2).setCellValue(0.0);}else {row.getCell(2).setCellValue(businessData.getTurnover());}if (Objects.isNull(businessData.getValidOrderCount())){row.getCell(3).setCellValue(0);}else {row.getCell(3).setCellValue(businessData.getValidOrderCount());}if (Objects.isNull(businessData.getOrderCompletionRate())){row.getCell(4).setCellValue(0.0);}else {row.getCell(4).setCellValue(businessData.getOrderCompletionRate());}if (Objects.isNull(businessData.getUnitPrice())){row.getCell(5).setCellValue(0.0);}else {row.getCell(5).setCellValue(businessData.getUnitPrice());}if (Objects.isNull(businessData.getNewUsers())){row.getCell(6).setCellValue(0);}else {row.getCell(6).setCellValue(businessData.getNewUsers());}}//通过输出流将文件下载到客户端浏览器中ServletOutputStream out = response.getOutputStream();excel.write(out);//关闭资源out.flush();out.close();excel.close();}catch (IOException e){e.printStackTrace();}}
http://www.yayakq.cn/news/621780/

相关文章:

  • 分享类网站源码在哪里学广告设计培训
  • 制作网站的最大公司wordpress问答中心
  • 学做网站应该看那些书国外网页设计分享网站
  • 重庆网站制作服务遵义在线观看
  • 温州网站建设制作公司网站所有者是什么意思
  • 建网站备案淄博营销网站建设公司
  • 深圳网站建设厂家毕设网站代做一般预算多少钱
  • wap网站做视频直播设计网站的关键点
  • 网站推广公司就去柚米青岛开发网站
  • 网站域名属于哪里管中山网站建设文化
  • 2013 中国网站建设市场 pdf襄阳做网站的公司有哪些
  • 公司网站上荣誉墙怎么做开家网络公司需要多少钱
  • 网站开发技术方案编写网站建设的专业知识
  • seo优化便宜西安seo外包行者seo06
  • 商贸有限公司取名免费网站做搜索引擎优化
  • 优惠建网站升级系统
  • 制作公司网站用什么软件做国际贸易都用什么网站
  • 中壹建设工程有限公司官方网站模板厂家
  • 怎么做网站推广线下网站地图无法生成
  • 做网站一定要购买虚拟主机吗多用户wordpress
  • 最具口碑的企业网站建设运营是做什么的
  • 网站开发如何适应各分辨率高端酒店网站模板
  • 做衣服哪个网站好网站建设后期维护小魔仙
  • wordpress %3c 3.6.1seo是做网站源码还是什么
  • 哈尔滨模板建站多少钱小网站从哪找的
  • 数码产品商城网站建设做网站的云服务器选什么
  • 网站开发制作公司排行微信开发工具官网
  • 电商网站有哪些功能模块php网站做多久
  • 做网站卖什么产品利润高编程就是做网站吗
  • 网站外链建设常用字如何分析网站用户体验