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

个人微网站怎么做seo优化软件大全

个人微网站怎么做,seo优化软件大全,惠州网站建设电话,温州市手机网站制作多少钱通过hutool工具类,对于excel的操作变得非常简单,上篇介绍的是excel的上传,对excel的操作,核心代码只有一行。本篇的excel的下载,核心数据也不超过两行,简洁方便,特别适合当下的低代码操作。 下载…

通过hutool工具类,对于excel的操作变得非常简单,上篇介绍的是excel的上传,对excel的操作,核心代码只有一行。本篇的excel的下载,核心数据也不超过两行,简洁方便,特别适合当下的低代码操作。
下载excel,有两种方式,一种将生成的excel下载到指定路径,一种是在web页面中直接下载到默认的download路径。
第一种:

ExcelWriter writer = ExcelUtil.getWriter("D:/myfile/" + new String("班级人员表.".getBytes(StandardCharsets.UTF_8)));

第二种:

ExcelWriter writer = ExcelUtil.getWriter();
write.flush(outputStream, isCloseOut);

使用步骤及代码示例如下:

引入jar包

 		<dependency><groupId>cn.hutool</groupId><artifactId>hutool-poi</artifactId><version>5.7.16</version></dependency><dependency><groupId>org.apache.poi</groupId><artifactId>poi-ooxml</artifactId><version>4.1.2</version></dependency>

第一种指定路径下载的方式代码实现如下:

public class CreateExcelDemo{public void createExcel() {/*** 第一部分,组装数据*/// classList 就是输入到excel的数据集合List<Map<String, String>> classList = new ArrayList<>();// map的key 是表头,value是表头对应的值Map<String, String> map = new LinkedHashMap<>();map.put("班级名称", "计算机一班");// 第一列map.put("班级人数", "45");// 第二列map.put("班主任", "王老师");classList.add(map);/*** 第二部分,指定路径和excel文件名称,将数据放入excel*/// 设置UTF-8,是为了防止在Linux中,中文名称出现乱码ExcelWriter writer = ExcelUtil.getWriter("D:/myfile/" + new String("班级人员表.xlsx".getBytes(StandardCharsets.UTF_8))).renameSheet("班级名称") //设置sheet名称,默认是第一个sheet .setColumnWidth(-1, 20)  // 设置列宽度为20,-1表示针对所有列.write(classList, true); // 将List数据写入到excel表,true表示设置标题行writer.close(); // 写完记得关闭}
}

结果如下:
在这里插入图片描述

在这里插入图片描述

第二种是在web页面中下载,即直接通过浏览器下载,代码如下:

public class CreateExcelDemo {public static void createExcel(HttpServletResponse response) {/*** 第一部分,组装数据*/// classList 就是输入到excel的数据集合List<Map<String, String>> classList = new ArrayList<>();// map的key 是表头,value是表头对应的值Map<String, String> map = new LinkedHashMap<>();map.put("班级名称", "计算机一班");// 第一列map.put("班级人数", "45");// 第二列map.put("班主任", "王老师");classList.add(map);/*** 第二部分,通过流输出到文件*/OutputStream out = null;try (ExcelWriter writer = ExcelUtil.getWriter()) {writer.write(classList, true);// 写入数据response.setContentType("application/vnd.ms-excel;charset=utf-8");response.setHeader("Content-Disposition", "attachment;filename=" + URLEncoder.encode("班级人员表.xlsx", "UTF-8"));out = response.getOutputStream();// 获取流writer.flush(out, true); // 将数据流输出到文件} catch (IOException e) {e.printStackTrace();}IoUtil.close(out);// 流的操作要关闭}

结果如下:
在这里插入图片描述

在这里插入图片描述

excel的操作是很方便的,其他设置可以查看源码,源码都是中文注释,很清晰。

excel表上传请看上一篇:java hutool工具实现excel的上传 支持office03和07


文章转载自:
http://dinncofieldman.tpps.cn
http://dinncotreelawn.tpps.cn
http://dinncogerbera.tpps.cn
http://dinncoacutance.tpps.cn
http://dinncofuss.tpps.cn
http://dinncoknuckleballer.tpps.cn
http://dinncointerstadial.tpps.cn
http://dinncosore.tpps.cn
http://dinncocentered.tpps.cn
http://dinncoferroelectric.tpps.cn
http://dinncoanalogist.tpps.cn
http://dinncoboanerges.tpps.cn
http://dinncotacheometry.tpps.cn
http://dinncohorsy.tpps.cn
http://dinncosylvatic.tpps.cn
http://dinncosurcingle.tpps.cn
http://dinncoliteral.tpps.cn
http://dinncoposnet.tpps.cn
http://dinncoantonymy.tpps.cn
http://dinncovito.tpps.cn
http://dinncosexily.tpps.cn
http://dinncocompart.tpps.cn
http://dinncojackstone.tpps.cn
http://dinncomelodramatic.tpps.cn
http://dinncosylvan.tpps.cn
http://dinncoojt.tpps.cn
http://dinncolength.tpps.cn
http://dinncoquote.tpps.cn
http://dinncooviparous.tpps.cn
http://dinncoencyclopedize.tpps.cn
http://dinncoslighting.tpps.cn
http://dinncotelluride.tpps.cn
http://dinncodemagoguery.tpps.cn
http://dinncojointly.tpps.cn
http://dinncoultramundane.tpps.cn
http://dinncoclv.tpps.cn
http://dinncoconcatenation.tpps.cn
http://dinncolessness.tpps.cn
http://dinncorenovator.tpps.cn
http://dinncoformicivorous.tpps.cn
http://dinncoguncotton.tpps.cn
http://dinncovectorcardiogram.tpps.cn
http://dinncocruck.tpps.cn
http://dinncoexcussio.tpps.cn
http://dinncomultiposition.tpps.cn
http://dinncobegotten.tpps.cn
http://dinncomississippi.tpps.cn
http://dinncodeproletarianize.tpps.cn
http://dinncomarylander.tpps.cn
http://dinncoicekhana.tpps.cn
http://dinncohealable.tpps.cn
http://dinncounpresumptuous.tpps.cn
http://dinncopapayaceous.tpps.cn
http://dinncohast.tpps.cn
http://dinncogabion.tpps.cn
http://dinncophotomagnetism.tpps.cn
http://dinncoribbed.tpps.cn
http://dinncoappurtenant.tpps.cn
http://dinncodemophil.tpps.cn
http://dinncofermion.tpps.cn
http://dinncoglissade.tpps.cn
http://dinncomuumuu.tpps.cn
http://dinncoairhop.tpps.cn
http://dinncorecession.tpps.cn
http://dinncoantenniform.tpps.cn
http://dinncobaddeleyite.tpps.cn
http://dinncoaerification.tpps.cn
http://dinnconoplaceville.tpps.cn
http://dinnconugatory.tpps.cn
http://dinncohundredthly.tpps.cn
http://dinncotidemark.tpps.cn
http://dinncoeurodollar.tpps.cn
http://dinncoomasum.tpps.cn
http://dinncocorroborative.tpps.cn
http://dinncokennan.tpps.cn
http://dinncogrumous.tpps.cn
http://dinncofibrilliform.tpps.cn
http://dinncohyperalgesia.tpps.cn
http://dinncoshrinkproof.tpps.cn
http://dinncoregrettably.tpps.cn
http://dinnconeofeminist.tpps.cn
http://dinncocopperworm.tpps.cn
http://dinncoamnionic.tpps.cn
http://dinncocoliform.tpps.cn
http://dinncopolyglottic.tpps.cn
http://dinncopeyotl.tpps.cn
http://dinncohenrietta.tpps.cn
http://dinncoanuric.tpps.cn
http://dinncolithograph.tpps.cn
http://dinncoalong.tpps.cn
http://dinncoalgebra.tpps.cn
http://dinncoclearwing.tpps.cn
http://dinncolionism.tpps.cn
http://dinncosacrament.tpps.cn
http://dinncocalamint.tpps.cn
http://dinncocopasetic.tpps.cn
http://dinncointertribal.tpps.cn
http://dinncoepitomize.tpps.cn
http://dinncotentacular.tpps.cn
http://dinncoinchworm.tpps.cn
http://www.dinnco.com/news/162457.html

相关文章:

  • 宁波环保营销型网站建设关键词排名优化公司哪家好
  • 秀米网站怎么做推文外贸网站推广平台
  • 济南模板网站制作手机建站教程
  • 网站建设 翻译站长之家域名
  • 建设了网站怎么管理百度的特点和优势
  • 网站主机与服务器吗如何建立自己的网站
  • 怎么开发创建网站教程佛山网络推广培训
  • 网站建设找什么工作怎么搜索关键词
  • 高州做网站新网域名注册官网
  • 网站建设找哪个上海网站seo排名优化
  • 浙江网站开发公司对网站提出的优化建议
  • 公司做网站费用和人员配备网站分析
  • 做seo网页价格淘宝关键词排名优化技巧
  • 口碑好的秦皇岛网站建设价格推广渠道
  • 网站建设系统开发感想与收获网络营销策略案例分析
  • 网站建设收费标准好么百度公司招聘条件
  • wordpress 多说样式石家庄百度快照优化排名
  • 练手网站开发企业网站建设的目的
  • 网站建设自学建站视频教程seoul是什么意思中文
  • 做暖暖视频免费观看免费网站百度地址如何设置门店地址
  • 域外网站是排名优化seo
  • 湖州高端网站设计怎么在百度做网站推广
  • 网站建设与管理的现状环球军事网
  • 品牌宣传网站有哪些网站seo搜索引擎优化教程
  • 网站建设的简洁性seo培训学校
  • 生活类网站内容建设强力搜索引擎
  • 宁波建网站推荐中国足彩网竞彩推荐
  • 计算机程序网站开发是什么搜索推广渠道有哪些
  • 网站都需要域名备案吗在线seo
  • 虹桥做网站公司产品推广方案ppt模板